1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-18 17:10:27 +00:00
nixpkgs/pkgs/tools/networking/httpie/default.nix

23 lines
620 B
Nix
Raw Normal View History

2013-02-16 18:08:43 +00:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "httpie-0.9.2";
namePrefix = "";
src = fetchurl {
url = "mirror://pypi/h/httpie/${name}.tar.gz";
sha256 = "0s0dsj1iimn17h0xyziwk4kz4ga9s0vy9rhzixh8dna32za84fdg";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests2 curses ];
2013-02-16 18:08:43 +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";
homepage = http://httpie.org/;
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ antono relrod ];
};
}