forked from mirrors/nixpkgs
python3Packages.slicedimage: add tifffile dependency
This commit is contained in:
parent
7bbdedb743
commit
01c9489b7d
1 changed files with 4 additions and 1 deletions
|
@ -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; {
|
||||
|
|
Loading…
Add table
Reference in a new issue