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

pythonPackages.wurlitzer: add missing python2 dependencies

authored by Jonathan Ringer and committed by Jon 920faee4 e9453fc8

+5 -1
+5 -1
pkgs/development/python-modules/wurlitzer/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 , mock 5 , pytest 6 }: 7 8 buildPythonPackage rec { ··· 14 sha256 = "0xndv47iwc9k8cp5r9r1z3r0xww0r5x5b7qsmn39gk2gsg0119c6"; 15 }; 16 17 checkInputs = [ mock pytest ]; 18 19 checkPhase = '' ··· 25 homepage = https://github.com/minrk/wurlitzer; 26 license = lib.licenses.mit; 27 }; 28 - }
··· 1 { lib 2 , buildPythonPackage 3 , fetchPypi 4 + , isPy27 5 , mock 6 , pytest 7 + , selectors2 8 }: 9 10 buildPythonPackage rec { ··· 16 sha256 = "0xndv47iwc9k8cp5r9r1z3r0xww0r5x5b7qsmn39gk2gsg0119c6"; 17 }; 18 19 + propagatedBuildInputs = lib.optionals isPy27 [ selectors2 ]; 20 + 21 checkInputs = [ mock pytest ]; 22 23 checkPhase = '' ··· 29 homepage = https://github.com/minrk/wurlitzer; 30 license = lib.licenses.mit; 31 }; 32 + }