From 3294887b2b8b0b80523a8f5ff46c9f73e43b046d Mon Sep 17 00:00:00 2001 From: Tyler Benster Date: Wed, 5 Jun 2019 22:23:38 -0700 Subject: [PATCH] pythonPackages.tifffile: add missing dependency (cherry picked from commit ba31a6835df40677095ffa952d3a2e07c95555a0) --- pkgs/development/python-modules/tifffile/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tifffile/default.nix b/pkgs/development/python-modules/tifffile/default.nix index 8aafc39fc34..02ca26960d0 100644 --- a/pkgs/development/python-modules/tifffile/default.nix +++ b/pkgs/development/python-modules/tifffile/default.nix @@ -1,6 +1,7 @@ -{ lib, fetchPypi, buildPythonPackage, isPy27 +{ lib, fetchPypi, buildPythonPackage, isPy27, isPy3k , numpy, enum34, futures, pathlib , pytest +, imagecodecs-lite }: buildPythonPackage rec { @@ -24,10 +25,11 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy ] ++ lib.optionals isPy27 [ futures enum34 pathlib ]; + ++ lib.optionals isPy3k [ imagecodecs-lite ]; meta = with lib; { description = "Read and write image data from and to TIFF files."; - homepage = https://www.lfd.uci.edu/~gohlke/; + homepage = "https://www.lfd.uci.edu/~gohlke/"; maintainers = [ maintainers.lebastr ]; license = licenses.bsd3; };