summary refs log tree commit diff
path: root/pkgs/tools/networking/httpie
diff options
context:
space:
mode:
authorRicky Elrod <ricky@elrod.me>2014-05-08 16:34:19 -0400
committerRicky Elrod <ricky@elrod.me>2014-05-08 16:39:24 -0400
commitdb98ce61d20051fbccd2b7c7220a02076c2447cf (patch)
treee0e952a7759bb6decde1eb0e0832296739deb0dc /pkgs/tools/networking/httpie
parent14eebb54dfa30106d27a672bc06bed84bc29ec32 (diff)
downloadnixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar.gz
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar.bz2
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar.lz
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar.xz
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.tar.zst
nixlib-db98ce61d20051fbccd2b7c7220a02076c2447cf.zip
httpie: Update -> 0.8.0
Signed-off-by: Ricky Elrod <ricky@elrod.me>
Diffstat (limited to 'pkgs/tools/networking/httpie')
-rw-r--r--pkgs/tools/networking/httpie/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix
index cdbb52fe7396..a31511beeab7 100644
--- a/pkgs/tools/networking/httpie/default.nix
+++ b/pkgs/tools/networking/httpie/default.nix
@@ -1,22 +1,22 @@
 { stdenv, fetchurl, pythonPackages }:
 
 pythonPackages.buildPythonPackage rec {
-  name = "httpie-0.4.1";
+  name = "httpie-0.8.0";
   namePrefix = "";
 
   src = fetchurl {
     url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz";
-    sha256 = "1qd03vd4657vdvkfhbd2wnlz4xh6hyw75m7wmfhgac5m2028y3cv";
+    sha256 = "16f3scm794plxbyw7a5b4541hb2psa85kfi98g83785i2qwz98ag";
   };
 
-  propagatedBuildInputs = with pythonPackages; [ pygments requests ];
+  propagatedBuildInputs = with pythonPackages; [ pygments requests2 ];
 
   doCheck = false;
 
   meta = {
     description = "A command line HTTP client whose goal is to make CLI human-friendly";
     homepage = http://httpie.org/;
-    license = "BSD";
-    maintainers = [ stdenv.lib.maintainers.antono ];
+    license = stdenv.lib.licenses.bsd3;
+    maintainers = with stdenv.lib.maintainers; [ antono relrod ];
   };
 }