mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
09e0cc7cc7
Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
23 lines
623 B
Nix
23 lines
623 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "httpie-0.9.9";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/h/httpie/${name}.tar.gz";
|
|
sha256 = "1jsgfkyzzizgfy1b0aicb4cp34d5pwskz9c4a8kf4rq3lrpjw87i";
|
|
};
|
|
|
|
propagatedBuildInputs = with pythonPackages; [ pygments requests ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A command line HTTP client whose goal is to make CLI human-friendly";
|
|
homepage = https://httpie.org/;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
maintainers = with stdenv.lib.maintainers; [ antono relrod schneefux ];
|
|
};
|
|
}
|