nixpkgs/pkgs/development/python-modules/duckdb/default.nix

46 lines
964 B
Nix
Raw Normal View History

2020-05-27 01:27:48 +00:00
{ lib
, buildPythonPackage
, duckdb
, numpy
, pandas
, pybind11
, setuptools-scm
2020-05-27 01:27:48 +00:00
, pytestrunner
, pytestCheckHook
2020-05-27 01:27:48 +00:00
}:
buildPythonPackage rec {
pname = "duckdb";
inherit (duckdb) version src;
# build attempts to use git to figure out its own version. don't want to add
# the dependency for something pointless.
postPatch = ''
substituteInPlace scripts/package_build.py --replace \
"'git'" "'false'"
'';
2020-05-27 01:27:48 +00:00
postConfigure = ''
cd tools/pythonpkg
export SETUPTOOLS_SCM_PRETEND_VERSION=${version}
'';
nativeBuildInputs = [
pybind11
setuptools-scm
2020-05-27 01:27:48 +00:00
pytestrunner
];
propagatedBuildInputs = [ numpy pandas ];
2020-05-27 01:27:48 +00:00
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "duckdb" ];
2020-05-27 01:27:48 +00:00
meta = with lib; {
description = "DuckDB is an embeddable SQL OLAP Database Management System";
homepage = "https://pypi.python.org/pypi/duckdb";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};
}