{ lib, buildPythonPackage, fetchPypi, setuptools-scm, cmake, }: buildPythonPackage rec { pname = "kuzu"; version = "0.11.0"; src = fetchPypi { inherit pname version; hash = "sha256-NLn+LZ+UQhWF+SHLBRO9WEhCpXBa51fAn9B14jrLQtc="; }; 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 ]; }; }