python3Packages.tifffile: refactor fix broken build

This commit is contained in:
Chris Ostrouchov 2019-12-30 08:52:01 -05:00
parent e291a32cd4
commit 0a126855c0
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573

View file

@ -1,5 +1,12 @@
{ lib, fetchPypi, buildPythonPackage, isPy27 { lib
, numpy, enum34, futures, pathlib , fetchPypi
, buildPythonPackage
, isPy27
, numpy
, imagecodecs-lite
, enum34
, futures
, pathlib
, pytest , pytest
}: }:
@ -17,13 +24,23 @@ buildPythonPackage rec {
# Missing dependencies: imagecodecs, czifile, cmapfile, oiffile, lfdfiles # Missing dependencies: imagecodecs, czifile, cmapfile, oiffile, lfdfiles
# and test data missing from PyPI tarball # and test data missing from PyPI tarball
doCheck = false; doCheck = false;
checkInputs = [ pytest ];
checkInputs = [
pytest
];
checkPhase = '' checkPhase = ''
pytest pytest
''; '';
propagatedBuildInputs = [ numpy ] propagatedBuildInputs = [
++ lib.optionals isPy27 [ futures enum34 pathlib ]; numpy
imagecodecs-lite
] ++ lib.optionals isPy27 [
futures
enum34
pathlib
];
meta = with lib; { meta = with lib; {
description = "Read and write image data from and to TIFF files."; description = "Read and write image data from and to TIFF files.";