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

23 lines
622 B
Nix
Raw Normal View History

2013-02-16 19:08:43 +01:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
2017-02-27 12:41:51 +01:00
name = "httpie-0.9.9";
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/h/httpie/${name}.tar.gz";
2017-02-27 12:41:51 +01:00
sha256 = "1jsgfkyzzizgfy1b0aicb4cp34d5pwskz9c4a8kf4rq3lrpjw87i";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests ];
2013-02-16 19:08:43 +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";
homepage = http://httpie.org/;
license = stdenv.lib.licenses.bsd3;
2016-12-11 13:17:49 +01:00
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
};
}