python3Packages.dask-glm: add missing setuptools-scm dep

This commit is contained in:
Jonathan Ringer 2021-04-18 10:51:20 -07:00 committed by Jonathan Ringer
parent f25190d7f2
commit bd8fb47110
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,7 @@
, dask , dask
, numpy, toolz # dask[array] , numpy, toolz # dask[array]
, multipledispatch , multipledispatch
, setuptools-scm
, scipy , scipy
, scikitlearn , scikitlearn
, pytest , pytest
@ -19,6 +20,7 @@ buildPythonPackage rec {
sha256 = "58b86cebf04fe5b9e58092e1c467e32e60d01e11b71fdc628baaa9fc6d1adee5"; sha256 = "58b86cebf04fe5b9e58092e1c467e32e60d01e11b71fdc628baaa9fc6d1adee5";
}; };
nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytest ]; checkInputs = [ pytest ];
propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikitlearn ]; propagatedBuildInputs = [ cloudpickle dask numpy toolz multipledispatch scipy scikitlearn ];