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

23 lines
605 B
Nix
Raw Normal View History

2013-02-16 19:08:43 +01:00
{ stdenv, fetchurl, pythonPackages }:
2013-02-16 19:08:43 +01:00
pythonPackages.buildPythonPackage {
name = "httpie-0.3.1";
namePrefix = "";
src = fetchurl {
url = "http://pypi.python.org/packages/source/h/httpie/httpie-0.3.1.tar.gz";
sha256 = "0abjkwcirmp6qa190qgbgj5fmmkmk5aa3fdiyayl2indh6304x7a";
};
2013-02-16 19:08:43 +01:00
propagatedBuildInputs = with pythonPackages; [ pygments requests014 ];
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 = "BSD";
maintainers = [ stdenv.lib.maintainers.antono ];
};
}