summary refs log tree commit diff
path: root/pkgs/tools/networking/httpie
diff options
context:
space:
mode:
authorGeorges Dubus <georges.dubus@gmail.com>2019-09-19 13:47:06 +0200
committerGeorges Dubus <georges.dubus@gmail.com>2019-09-19 13:47:06 +0200
commit55bf3b482cf6ca9b7c417217d5255873a65a9b6b (patch)
tree579794c39f209c997a753ce4fa76d165ae0982b3 /pkgs/tools/networking/httpie
parente9322d43861f4dd0aa62e31e66cdd6abe117e2e0 (diff)
downloadnixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar.gz
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar.bz2
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar.lz
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar.xz
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.tar.zst
nixpkgs-55bf3b482cf6ca9b7c417217d5255873a65a9b6b.zip
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.
Diffstat (limited to 'pkgs/tools/networking/httpie')
-rw-r--r--pkgs/tools/networking/httpie/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix
index 6395fcf09eb..09a9ade75ce 100644
--- a/pkgs/tools/networking/httpie/default.nix
+++ b/pkgs/tools/networking/httpie/default.nix
@@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "103fcigpxf4nqmrdqjnyz7d9n4n16906slwmmqqc0gkxv8hnw6vd";
   };
 
-  propagatedBuildInputs = with pythonPackages; [ pygments requests ];
+  propagatedBuildInputs = with pythonPackages; [ pygments requests setuptools ];
 
   doCheck = false;