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-09-27 16:40:13 +00:00
parent f702ae1516
commit 23fd70d694

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
];