pypi2nix: add missing setuptools dependency

Broken by f7e28bf5d8, which removed
setuptools from the default propagatedBuildInputs of Python packages.
This commit is contained in:
edef
2019-10-18 12:17:17 +00:00
parent f702ae1516
commit 23fd70d694
+1 -1
View File
@@ -32,7 +32,7 @@ in stdenv.mkDerivation rec {
requests
];
buildInputs = [
pythonPackages.python pythonPackages.flake8
pythonPackages.python pythonPackages.flake8 pythonPackages.setuptools
zip makeWrapper nix.out nix-prefetch-git nix-prefetch-hg
];