tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.duckdb: cleanup, add import check
Sandro Jäckel
5 years ago
f14aa7ae
8c80c1e7
+4
-12
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
duckdb
default.nix
+4
-12
pkgs/development/python-modules/duckdb/default.nix
reviewed
···
6
6
, pybind11
7
7
, setuptools_scm
8
8
, pytestrunner
9
9
-
, pytest
9
9
+
, pytestCheckHook
10
10
}:
11
11
12
12
buildPythonPackage rec {
···
31
31
pytestrunner
32
32
];
33
33
34
34
-
checkInputs = [
35
35
-
pytest
36
36
-
];
37
37
-
38
38
-
propagatedBuildInputs = [
39
39
-
numpy
40
40
-
pandas
41
41
-
];
34
34
+
propagatedBuildInputs = [ numpy pandas ];
42
35
43
43
-
checkPhase = ''
44
44
-
pytest
45
45
-
'';
36
36
+
checkInputs = [ pytestCheckHook ];
37
37
+
pythonImportsCheck = [ "duckdb" ];
46
38
47
39
meta = with lib; {
48
40
description = "DuckDB is an embeddable SQL OLAP Database Management System";