Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.tifffile: fix python 2 build (#46415)

authored by

Maximilian Bode and committed by
xeji
c020a59c 5b1b4adb

+2 -2
+2 -2
pkgs/development/python-modules/tifffile/default.nix
··· 1 1 { lib, stdenv, fetchPypi, buildPythonPackage, isPy27, pythonOlder 2 - , numpy, nose, enum34, futures }: 2 + , numpy, nose, enum34, futures, pathlib }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "tifffile"; ··· 16 16 ''; 17 17 18 18 propagatedBuildInputs = [ numpy ] 19 - ++ lib.optional isPy27 futures 19 + ++ lib.optional isPy27 [ futures pathlib ] 20 20 ++ lib.optional (pythonOlder "3.0") enum34; 21 21 22 22 meta = with stdenv.lib; {