summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2022-09-11 10:39:21 +0200
committerMatthias Beyer <mail@beyermatthias.de>2022-09-11 10:39:21 +0200
commit2a06ce227080bae11761fd32bb83ff3cb1d05a73 (patch)
tree9bdec005a60cb2ea57b3eaa9c78131cb5cf6a747
parent18a0b41ede829c9317a6e5f165ad2a1021249892 (diff)
downloadnixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar.gz
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar.bz2
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar.lz
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar.xz
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.tar.zst
nixpkgs-2a06ce227080bae11761fd32bb83ff3cb1d05a73.zip
http-prompt: 1.0.0 -> 2.1.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--pkgs/tools/networking/http-prompt/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/networking/http-prompt/default.nix b/pkgs/tools/networking/http-prompt/default.nix
index e0f2d33623a..8fce232cdb1 100644
--- a/pkgs/tools/networking/http-prompt/default.nix
+++ b/pkgs/tools/networking/http-prompt/default.nix
@@ -2,13 +2,13 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "http-prompt";
-  version = "1.0.0";
+  version = "2.1.0";
 
   src = fetchFromGitHub {
     rev = "v${version}";
     repo = "http-prompt";
     owner = "httpie";
-    sha256 = "0kngz2izcqjphbrdkg489p0xmf65xjc8ki1a2szcc8sgwc7z74xy";
+    sha256 = "sha256-e4GyuxCeXYNsnBXyjIJz1HqSrqTGan0N3wxUFS+Hvkw=";
   };
 
   propagatedBuildInputs = with python3Packages; [
@@ -18,6 +18,7 @@ python3Packages.buildPythonApplication rec {
     (python.pkgs.callPackage ../../../development/python-modules/prompt-toolkit/1.nix {})
     pygments
     six
+    pyyaml
   ];
 
   checkPhase = ''