Skip to content

Commit

Permalink
httpy-cli: init at 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hatch01 committed Feb 25, 2024
1 parent 8e47434 commit 8b9c977
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/applications/networking/httpy-cli/default.nix
@@ -0,0 +1,29 @@
{ lib
, python3Packages
, fetchPypi
}:

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

src = fetchPypi {
inherit pname version;
hash = "sha256-3oRf0hZnWLy5zqN54jvGbi+RLrV6K0G2mnBV1wY3lzs=";
};

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

meta = with lib; {
description = "Modern, user-friendly, programmable command-line HTTP client for the API. ";
homepage = "https://github.com/knid/httpy";
license = licenses.mit;
maintainers = with maintainers; [ eymeric ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -32172,6 +32172,8 @@ with pkgs;

hpmyroom = libsForQt5.callPackage ../applications/networking/hpmyroom { };

httpy-cli = callPackage ../applications/networking/httpy-cli { };

ht = callPackage ../applications/editors/ht { };

xh = callPackage ../tools/networking/xh { };
Expand Down

0 comments on commit 8b9c977

Please sign in to comment.