12 buildPythonPackage rec {
14 inherit (duckdb) version src;
16 # build attempts to use git to figure out its own version. don't want to add
17 # the dependency for something pointless.
19 substituteInPlace scripts/package_build.py --replace \
25 export SETUPTOOLS_SCM_PRETEND_VERSION=${version}
34 propagatedBuildInputs = [ numpy pandas ];
36 checkInputs = [ pytestCheckHook ];
37 pythonImportsCheck = [ "duckdb" ];
40 description = "DuckDB is an embeddable SQL OLAP Database Management System";
41 homepage = "https://pypi.python.org/pypi/duckdb";
42 license = licenses.mit;
43 maintainers = [ maintainers.costrouc ];