httpie: add missing 'setuptools' to propagatedBuildInputs

As a side-effect of f7e28bf, the build no longer propagated 'setuptools', which
is a run-time dependency. See #68314 for further details.
This commit is contained in:
Georges Dubus 2019-09-19 13:47:06 +02:00
parent e9322d4386
commit 55bf3b482c

View file

@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication rec {
sha256 = "103fcigpxf4nqmrdqjnyz7d9n4n16906slwmmqqc0gkxv8hnw6vd";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests ];
propagatedBuildInputs = with pythonPackages; [ pygments requests setuptools ];
doCheck = false;