Skip to content

Commit

Permalink
httpy-cli: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hatch01 committed Mar 27, 2024
1 parent 8e47434 commit accbb5e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/by-name/ht/httpy-cli/package.nix
@@ -0,0 +1,30 @@
{ lib
, python3Packages
, fetchPypi
}:

python3Packages.buildPythonPackage rec {
pname = "httpy-cli";
version = "1.1.0";
format = "setuptools";

src = fetchPypi {
inherit pname version;
hash = "sha256-uhF/jF4buHMDiXOuuqjskynioz4qVBevQhdcUbH+91Q=";
};

propagatedBuildInputs = with python3Packages; [
colorama
pygments
requests
urllib3
];

meta = with lib; {
description = "Modern, user-friendly, programmable command-line HTTP client for the API";
homepage = "https://github.com/knid/httpy";
mainProgram = "httpy";
license = licenses.mit;
maintainers = with maintainers; [ eymeric ];
};
}

0 comments on commit accbb5e

Please sign in to comment.