summary refs log tree commit diff
path: root/pkgs/tools/networking/httpie
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2016-10-16 15:44:29 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2016-10-16 15:44:29 +0200
commit92487043aef07f620034af9caa566adecd4a252b (patch)
tree6392cf33db18deb100a541811309e4642d771313 /pkgs/tools/networking/httpie
parent0f78fcec7a606b5abdf3df6a8857fe361303cceb (diff)
downloadnixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar.gz
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar.bz2
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar.lz
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar.xz
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.tar.zst
nixpkgs-92487043aef07f620034af9caa566adecd4a252b.zip
httpie: 0.9.3 -> 0.9.6
Diffstat (limited to 'pkgs/tools/networking/httpie')
-rw-r--r--pkgs/tools/networking/httpie/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix
index c960528322b..645b981de13 100644
--- a/pkgs/tools/networking/httpie/default.nix
+++ b/pkgs/tools/networking/httpie/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, pythonPackages }:
 
 pythonPackages.buildPythonApplication rec {
-  name = "httpie-0.9.3";
+  name = "httpie-0.9.6";
   namePrefix = "";
 
   src = fetchurl {
     url = "mirror://pypi/h/httpie/${name}.tar.gz";
-    sha256 = "0jvzxr8r6cy6ipknkw95qf8rz69nqdv5nky87h1vcp5pf8mgza1h";
+    sha256 = "1cch5y0hr9qpfn9m4nw5796c2x7v3m1ni4psjm26ajsl8pw90jx6";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pygments requests2 curses ];