aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-09-20 08:28:07 +0200
committerGitHub <noreply@github.com>2019-09-20 08:28:07 +0200
commitd50d5817d45f986a928e6a4c1be5b0dc324bb272 (patch)
tree0cd10e76a4455703c0c65cd362ed8e57c1c451d2
parent5af0d0b5da476e37630532f5122cc81e7e40e5f7 (diff)
parent55bf3b482cf6ca9b7c417217d5255873a65a9b6b (diff)
Merge pull request #69094 from madjar/fix-httpie
httpie: add missing 'setuptools' to propagatedBuildInputs
-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;