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

23 lines
627 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python3Packages }:
python3Packages.buildPythonApplication rec {
2019-08-30 04:02:24 +01:00
pname = "httpie";
2019-08-30 04:05:26 +01:00
version = "1.0.3";
src = python3Packages.fetchPypi {
2019-08-30 04:04:50 +01:00
inherit pname version;
2019-08-30 04:05:26 +01:00
sha256 = "103fcigpxf4nqmrdqjnyz7d9n4n16906slwmmqqc0gkxv8hnw6vd";
};
propagatedBuildInputs = with python3Packages; [ pygments requests setuptools ];
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 ];
};
}