summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/httpsig/default.nix
blob: cff72de36077a5d7340874ed3cd9fd8e044170c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, setuptools_scm
, pycryptodome
, requests
}:

buildPythonPackage rec {
  pname = "httpsig";
  version = "1.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "19ng7y7blp13z081z5a6dxng1p8xlih7g6frmsg3q5ri8lvpybc7";
  };

  buildInputs = [ setuptools_scm ];
  propagatedBuildInputs = [ pycryptodome requests ];

  # Jailbreak pycryptodome
  preBuild = ''
    substituteInPlace setup.py --replace "==3.4.7" ""
  '';

  meta = with lib; {
    description = "Sign HTTP requests with secure signatures";
    license = licenses.mit;
    maintainers = with maintainers; [ srhb ];
    homepage = https://github.com/ahknight/httpsig;
  };
}