3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.dask-glm: use pytestCheckHook

This commit is contained in:
Robert Schütz 2021-04-23 10:53:37 +02:00
parent a9118b8592
commit 7e55392a4f

View file

@ -8,7 +8,7 @@
, setuptools-scm
, scipy
, scikitlearn
, pytest
, pytestCheckHook
}:
buildPythonPackage rec {
@ -21,13 +21,9 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikitlearn ];
checkPhase = ''
py.test dask_glm
'';
meta = with lib; {
homepage = "https://github.com/dask/dask-glm/";
description = "Generalized Linear Models with Dask";