pythonpackages.scikitimage: add missing dependency

This commit is contained in:
tbenst 2019-10-31 11:57:42 -07:00 committed by Frederik Rietdijk
parent 4cac5a494a
commit 2958eb6266

View file

@ -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;
}; };
} }