python3Packages.slicedimage: add tifffile dependency

This commit is contained in:
Jonathan Ringer
2019-11-27 22:33:22 -08:00
committed by Jon
parent 7bbdedb743
commit 01c9489b7d

View File

@@ -12,6 +12,7 @@
, six
, pytest
, isPy27
, tifffile
}:
buildPythonPackage rec {
@@ -31,14 +32,16 @@ buildPythonPackage rec {
requests
scikitimage
six
tifffile
] ++ lib.optionals isPy27 [ pathlib enum34 ];
checkInputs = [
pytest
];
# ignore tests which require setup
checkPhase = ''
pytest
pytest --ignore tests/io_
'';
meta = with lib; {