2013-02-16 10:08:43 -08:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2012-12-28 14:28:34 -08:00
|
|
|
|
2013-04-07 16:19:20 -07:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
2014-05-08 13:34:19 -07:00
|
|
|
name = "httpie-0.8.0";
|
2012-12-28 14:28:34 -08:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-04-07 16:19:20 -07:00
|
|
|
url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz";
|
2014-05-08 13:34:19 -07:00
|
|
|
sha256 = "16f3scm794plxbyw7a5b4541hb2psa85kfi98g83785i2qwz98ag";
|
2012-12-28 14:28:34 -08:00
|
|
|
};
|
|
|
|
|
2014-05-08 13:34:19 -07:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygments requests2 ];
|
2013-02-16 10:08:43 -08:00
|
|
|
|
2012-12-28 14:28:34 -08:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2012-12-28 15:09:01 -08:00
|
|
|
description = "A command line HTTP client whose goal is to make CLI human-friendly";
|
2012-12-28 14:28:34 -08:00
|
|
|
homepage = http://httpie.org/;
|
2014-05-08 13:34:19 -07:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono relrod ];
|
2012-12-28 14:28:34 -08:00
|
|
|
};
|
|
|
|
}
|