3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #21071 from schneefux/pkg.httpie

httpie: 0.9.6 -> 0.9.8
This commit is contained in:
Jörg Thalheim 2016-12-11 16:47:51 +01:00 committed by GitHub
commit 4b245c530d

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