summary refs log tree commit diff
path: root/pkgs/tools/networking/httpie/default.nix
blob: d95360ccb458269bdb8f26645da143d656a4972e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pythonPackages }:

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";
  };

  propagatedBuildInputs = with pythonPackages; [ pygments requests014 ];

  doCheck = false;

  meta = {
    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 ];
  };
}