2013-02-16 19:08:43 +01:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2012-12-28 23:28:34 +01:00
|
|
|
|
2013-04-08 01:19:20 +02:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
|
|
name = "httpie-0.4.1";
|
2012-12-28 23:28:34 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2013-04-08 01:19:20 +02:00
|
|
|
url = "http://pypi.python.org/packages/source/h/httpie/${name}.tar.gz";
|
|
|
|
sha256 = "1qd03vd4657vdvkfhbd2wnlz4xh6hyw75m7wmfhgac5m2028y3cv";
|
2012-12-28 23:28:34 +01:00
|
|
|
};
|
|
|
|
|
2013-04-08 01:17:44 +02:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygments requests ];
|
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/;
|
|
|
|
license = "BSD";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.antono ];
|
|
|
|
};
|
|
|
|
}
|