python3Packages.slicedimage: add tifffile dependency
This commit is contained in:
parent
7bbdedb743
commit
01c9489b7d
@ -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; {
|
||||||
|
Loading…
Reference in New Issue
Block a user