Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
651 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
cmake,
}:
buildPythonPackage rec {
pname = "kuzu";
version = "0.11.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-nyJOwhirFloYrK6pA2lXeXgNcDNbr0Atm39ZujidsL0=";
};
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 ];
};
}