3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/httpie/default.nix

23 lines
612 B
Nix
Raw Normal View History

2013-02-16 18:08:43 +00:00
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
2019-08-30 04:02:24 +01:00
pname = "httpie";
version = "1.0.2";
2019-08-30 04:04:50 +01:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1ax22jh5lpjywpj7lsl072wdhr1pxiqzmxhyph5diwxxzs2nqrzw";
};
propagatedBuildInputs = with pythonPackages; [ pygments requests ];
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 = https://httpie.org/;
license = stdenv.lib.licenses.bsd3;
2016-12-11 12:17:49 +00:00
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
};
}