Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / httpsig / default.nix
blobfe7ed11c2fffe78a2d0dcd06600e351e862071b8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 , setuptools-scm
6 , pycryptodome
7 , requests
8 , six
9 , pytestCheckHook
12 buildPythonPackage rec {
13   pname = "httpsig";
14   version = "1.3.0";
15   pyproject = true;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-cdbVAkYSnE98/sIPXlfjUdK4SS1jHMKqlnkUrPkfbOY=";
20   };
22   build-system = [
23     setuptools
24     setuptools-scm
25   ];
27   dependencies = [
28     pycryptodome
29     requests
30     six
31     setuptools
32   ];
34   nativeCheckInputs = [
35     pytestCheckHook
36   ];
38   pythonImportsCheck = [ "httpsig" ];
40   meta = with lib; {
41     description = "Sign HTTP requests with secure signatures";
42     license = licenses.mit;
43     maintainers = with maintainers; [ srhb ];
44     homepage = "https://github.com/ahknight/httpsig";
45   };