File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed
development/python-modules/kuzu Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildPythonPackage ,
4+ fetchPypi ,
5+ setuptools-scm ,
6+ cmake ,
7+ } :
8+
9+ buildPythonPackage rec {
10+ pname = "kuzu" ;
11+ version = "0.9.0" ;
12+
13+ src = fetchPypi {
14+ inherit pname version ;
15+ hash = "sha256-Llnz1NH8OF6ekNeuCfBy7C9M/v9QhYJSOgA0zrB29us=" ;
16+ } ;
17+
18+ pyproject = true ;
19+
20+ nativeBuildInputs = [
21+ setuptools-scm
22+ cmake
23+ ] ;
24+
25+ dontUseCmakeConfigure = true ;
26+
27+ pythonImportsCheck = [ "kuzu" ] ;
28+
29+ meta = {
30+ description = "Python bindings for Kuzu, an embeddable property graph database management system" ;
31+ homepage = "https://kuzudb.com/" ;
32+ license = lib . licenses . mit ;
33+ maintainers = with lib . maintainers ; [ sdht0 ] ;
34+ } ;
35+ }
Original file line number Diff line number Diff line change @@ -7398,6 +7398,8 @@ self: super: with self; {
73987398
73997399 kurbopy = callPackage ../development/python-modules/kurbopy { };
74007400
7401+ kuzu = callPackage ../development/python-modules/kuzu { };
7402+
74017403 l18n = callPackage ../development/python-modules/l18n { };
74027404
74037405 labelbox = callPackage ../development/python-modules/labelbox { };
You can’t perform that action at this time.
0 commit comments