summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2016-12-11 13:17:49 +0100
committerschneefux <schneefux+commit@schneefux.xyz>2016-12-11 13:17:49 +0100
commitb6a4876258a42bd1c733bb77b40367d016094913 (patch)
tree26f4eb04b062c953eb51ba3b632f68dcaf84f9a3 /pkgs/tools/networking
parentbdab6fe5a16680adafdda6ab728065a740de177b (diff)
downloadnixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar.gz
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar.bz2
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar.lz
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar.xz
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.tar.zst
nixlib-b6a4876258a42bd1c733bb77b40367d016094913.zip
httpie: 0.9.6 -> 0.9.8
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/httpie/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix
index a5c7353905b4..fe30fd949675 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.6";
+  name = "httpie-0.9.8";
   namePrefix = "";
 
   src = fetchurl {
     url = "mirror://pypi/h/httpie/${name}.tar.gz";
-    sha256 = "1cch5y0hr9qpfn9m4nw5796c2x7v3m1ni4psjm26ajsl8pw90jx6";
+    sha256 = "1qgn1mpkk8wxxhvgxw3fnscqg3klh42ijr11zrb0ylriaaqp0n2i";
   };
 
   propagatedBuildInputs = with pythonPackages; [ pygments requests2 ];
@@ -17,6 +17,6 @@ pythonPackages.buildPythonApplication rec {
     description = "A command line HTTP client whose goal is to make CLI human-friendly";
     homepage = http://httpie.org/;
     license = stdenv.lib.licenses.bsd3;
-    maintainers = with stdenv.lib.maintainers; [ antono relrod ];
+    maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
   };
 }