about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authoreymeric <eymericdechelette@gmail.com>2024-02-24 19:28:45 +0100
committereymeric <eymericdechelette@gmail.com>2024-03-29 10:00:11 +0100
commit2ef96f0ba025d72c0f3093c2c5cdf147d9b94581 (patch)
treebea1ece6c9e79b34bf45e84c419b5d49a7f63112 /pkgs/by-name
parent8e474340ed0592ca21c1398d88dd89bf7100e881 (diff)
httpy-cli: init at 1.1.0
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/ht/httpy-cli/package.nix53
1 files changed, 53 insertions, 0 deletions
diff --git a/pkgs/by-name/ht/httpy-cli/package.nix b/pkgs/by-name/ht/httpy-cli/package.nix
new file mode 100644
index 0000000000000..2b59b54ef2136
--- /dev/null
+++ b/pkgs/by-name/ht/httpy-cli/package.nix
@@ -0,0 +1,53 @@
+{ 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 = [
+    "httpy"
+  ];
+
+  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 ];
+  };
+}