mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
54 lines
991 B
Nix
54 lines
991 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, isPy27
|
|
, isPy3k
|
|
, numpy
|
|
, imagecodecs-lite
|
|
, enum34
|
|
, futures
|
|
, pathlib
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tifffile";
|
|
version = "2019.7.26.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2abb91c3a23a61593c5635ac1a19f67e732b46291c305fcee0eeaad41181a13f";
|
|
};
|
|
|
|
patches = lib.optional isPy27 ./python2-regex-compat.patch;
|
|
|
|
# Missing dependencies: imagecodecs, czifile, cmapfile, oiffile, lfdfiles
|
|
# and test data missing from PyPI tarball
|
|
doCheck = false;
|
|
|
|
checkInputs = [
|
|
pytest
|
|
];
|
|
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
] ++ lib.optionals isPy3k [
|
|
imagecodecs-lite
|
|
] ++ lib.optionals isPy27 [
|
|
futures
|
|
enum34
|
|
pathlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Read and write image data from and to TIFF files.";
|
|
homepage = "https://www.lfd.uci.edu/~gohlke/";
|
|
maintainers = [ maintainers.lebastr ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|