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