httpie: Update -> 0.8.0

Signed-off-by: Ricky Elrod <ricky@elrod.me>
This commit is contained in:
Ricky Elrod 2014-05-08 16:34:19 -04:00
parent 14eebb54df
commit db98ce61d2

View File

@ -1,22 +1,22 @@
{ stdenv, fetchurl, pythonPackages }: { stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonPackage rec { pythonPackages.buildPythonPackage rec {
name = "httpie-0.4.1"; name = "httpie-0.8.0";
namePrefix = ""; namePrefix = "";
src = fetchurl { src = fetchurl {
url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz"; 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; doCheck = false;
meta = { meta = {
description = "A command line HTTP client whose goal is to make CLI human-friendly"; description = "A command line HTTP client whose goal is to make CLI human-friendly";
homepage = http://httpie.org/; homepage = http://httpie.org/;
license = "BSD"; license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.antono ]; maintainers = with stdenv.lib.maintainers; [ antono relrod ];
}; };
} }