nixpkgs/pkgs/tools/networking/httpie/default.nix

23 lines
623 B
Nix
Raw Normal View History

2013-02-16 10:08:43 -08:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
2016-12-11 04:17:49 -08:00
name = "httpie-0.9.8";
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/h/httpie/${name}.tar.gz";
2016-12-11 04:17:49 -08:00
sha256 = "1qgn1mpkk8wxxhvgxw3fnscqg3klh42ijr11zrb0ylriaaqp0n2i";
};
2016-10-13 15:03:12 -07:00
propagatedBuildInputs = with pythonPackages; [ pygments requests2 ];
2013-02-16 10:08:43 -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";
homepage = http://httpie.org/;
license = stdenv.lib.licenses.bsd3;
2016-12-11 04:17:49 -08:00
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
};
}