pythonpackages.scikitimage: add missing dependency
This commit is contained in:
parent
4cac5a494a
commit
2958eb6266
1 changed files with 3 additions and 2 deletions
|
@ -12,6 +12,7 @@
|
||||||
, dask
|
, dask
|
||||||
, cloudpickle
|
, cloudpickle
|
||||||
, pytest
|
, pytest
|
||||||
|
, imageio
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -25,7 +26,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
buildInputs = [ cython ];
|
buildInputs = [ cython ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ numpy scipy matplotlib networkx six pillow pywavelets dask cloudpickle ];
|
propagatedBuildInputs = [ numpy scipy matplotlib networkx six pillow pywavelets dask cloudpickle imageio ];
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
|
@ -37,4 +38,4 @@ buildPythonPackage rec {
|
||||||
homepage = http://scikit-image.org;
|
homepage = http://scikit-image.org;
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue