1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

httpie: 0.9.6 -> 0.9.8

This commit is contained in:
schneefux 2016-12-11 13:17:49 +01:00
parent bdab6fe5a1
commit b6a4876258
No known key found for this signature in database
GPG key ID: 50F2BF336737C2F0

View file

@ -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 ];
};
}