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 {
|
2018-12-16 06:05:16 +01:00
|
|
|
name = "httpie-1.0.2";
|
2012-12-28 23:28:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/h/httpie/${name}.tar.gz";
|
2018-12-16 06:05:16 +01:00
|
|
|
sha256 = "1ax22jh5lpjywpj7lsl072wdhr1pxiqzmxhyph5diwxxzs2nqrzw";
|
2012-12-28 23:28:34 +01:00
|
|
|
};
|
|
|
|
|
2017-05-07 12:55:45 +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";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://httpie.org/;
|
2014-05-08 22:34:19 +02:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-12-11 13:17:49 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
|
2012-12-28 23:28:34 +01:00
|
|
|
};
|
|
|
|
}
|