2013-02-16 19:08:43 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2012-12-28 23:28:34 +01:00
|
|
|
|
2016-02-19 13:12:11 +01:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2016-10-16 15:44:29 +02:00
|
|
|
name = "httpie-0.9.6";
|
2012-12-28 23:28:34 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/h/httpie/${name}.tar.gz";
|
2016-10-16 15:44:29 +02:00
|
|
|
sha256 = "1cch5y0hr9qpfn9m4nw5796c2x7v3m1ni4psjm26ajsl8pw90jx6";
|
2012-12-28 23:28:34 +01:00
|
|
|
};
|
|
|
|
|
2016-10-14 00:03:12 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygments requests2 ];
|
2013-02-16 19:08:43 +01:00
|
|
|
|
2012-12-28 23:28:34 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2012-12-29 00:09:01 +01:00
|
|
|
description = "A command line HTTP client whose goal is to make CLI human-friendly";
|
2012-12-28 23:28:34 +01:00
|
|
|
homepage = http://httpie.org/;
|
2014-05-08 22:34:19 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono relrod ];
|
2012-12-28 23:28:34 +01:00
|
|
|
};
|
|
|
|
}
|