forked from mirrors/nixpkgs
python3Packages.dask-glm: use pytestCheckHook
This commit is contained in:
parent
a9118b8592
commit
7e55392a4f
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue