2013-02-16 18:08:43 +00:00
|
|
|
{ stdenv, fetchurl, pythonPackages }:
|
2012-12-28 22:28:34 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
pythonPackages.buildPythonApplication rec {
|
2019-08-30 03:02:24 +00:00
|
|
|
pname = "httpie";
|
2019-08-30 03:05:26 +00:00
|
|
|
version = "1.0.3";
|
2012-12-28 22:28:34 +00:00
|
|
|
|
2019-08-30 03:04:50 +00:00
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-30 03:05:26 +00:00
|
|
|
sha256 = "103fcigpxf4nqmrdqjnyz7d9n4n16906slwmmqqc0gkxv8hnw6vd";
|
2012-12-28 22:28:34 +00:00
|
|
|
};
|
|
|
|
|
2019-09-19 11:47:06 +00:00
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygments requests setuptools ];
|
2013-02-16 18:08:43 +00:00
|
|
|
|
2012-12-28 22:28:34 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
2012-12-28 23:09:01 +00:00
|
|
|
description = "A command line HTTP client whose goal is to make CLI human-friendly";
|
2017-08-02 21:50:51 +00:00
|
|
|
homepage = https://httpie.org/;
|
2014-05-08 20:34:19 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-12-11 12:17:49 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
|
2012-12-28 22:28:34 +00:00
|
|
|
};
|
|
|
|
}
|