nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.rangehttpserver: add setuptools to nativeBuildInputs

authored by

Martin Weinelt and committed by
Sandro Jäckel
54aea047 cd9776aa

+5
+5
pkgs/development/python-modules/rangehttpserver/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , setuptools 4 5 , nose 5 6 , requests 6 7 }: ··· 17 16 rev = version; 18 17 sha256 = "1sy9j6y8kp5jiwv2vd652v94kspp1yd4dwxrfqfn6zwnfyv2mzv5"; 19 18 }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 20 23 21 24 checkInputs = [ 22 25 nose