blob: 106e14d3313d1a8f97248d62aff4541ea8d5af95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
cmake,
}:
buildPythonPackage rec {
pname = "kuzu";
version = "0.11.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-576jyjDEu0Ynku7cqn8hJcgAskO7SocuHu3BaRfBlno=";
};
pyproject = true;
nativeBuildInputs = [
setuptools-scm
cmake
];
dontUseCmakeConfigure = true;
pythonImportsCheck = [ "kuzu" ];
meta = {
description = "Python bindings for Kuzu, an embeddable property graph database management system";
homepage = "https://kuzudb.com/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sdht0 ];
};
}
|