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