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 28, 2024
1 parent 8e47434 commit f02cb37
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pkgs/by-name/ht/httpy-cli/package.nix
@@ -0,0 +1,56 @@
{ lib
, python3Packages
, fetchPypi
, curl
}:

python3Packages.buildPythonPackage rec {
pname = "httpy-cli";
version = "1.1.0";
pyproject = true;

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

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

build-system = with python3Packages; [
setuptools
];

pythonImportsCheck = [
"colorama"
"pygments"
"requests"
"urllib3"
];

nativeCheckInputs = [
python3Packages.pytest
curl
];

checkPhase = ''
runHook preCheck
echo "line1\nline2\nline3" > tests/test_file.txt
# ignore the test_args according to pytest.ini in the repo
pytest tests/ --ignore=tests/test_args.py
runHook postCheck
'';

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

0 comments on commit f02cb37

Please sign in to comment.