lol

pythonPackages.duckdb: cleanup, add import check

+4 -12
+4 -12
pkgs/development/python-modules/duckdb/default.nix
··· 6 6 , pybind11 7 7 , setuptools_scm 8 8 , pytestrunner 9 - , pytest 9 + , pytestCheckHook 10 10 }: 11 11 12 12 buildPythonPackage rec { ··· 31 31 pytestrunner 32 32 ]; 33 33 34 - checkInputs = [ 35 - pytest 36 - ]; 37 - 38 - propagatedBuildInputs = [ 39 - numpy 40 - pandas 41 - ]; 34 + propagatedBuildInputs = [ numpy pandas ]; 42 35 43 - checkPhase = '' 44 - pytest 45 - ''; 36 + checkInputs = [ pytestCheckHook ]; 37 + pythonImportsCheck = [ "duckdb" ]; 46 38 47 39 meta = with lib; { 48 40 description = "DuckDB is an embeddable SQL OLAP Database Management System";