aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/python-jose/default.nix
blob: 6b8104516ea918216f131d3e3ba33a77e3244f52 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ stdenv, buildPythonPackage, fetchFromGitHub
, future, six, ecdsa, rsa
, pycrypto, pytestcov, pytestrunner, cryptography
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "python-jose";
  version = "3.2.0";

  src = fetchFromGitHub {
    owner = "mpdavis";
    repo = "python-jose";
    rev = version;
    sha256 = "cSPIZrps0xFd4pPcQ4w/jFWOk2XYgd3mtE/sDzlytvY=";
  };

  checkInputs = [
    pycrypto
    pytestCheckHook
    pytestcov
    pytestrunner
    cryptography # optional dependency, but needed in tests
  ];

  # relax ecdsa deps
  patchPhase = ''
    substituteInPlace setup.py \
      --replace 'ecdsa<0.15' 'ecdsa' \
      --replace 'ecdsa <0.15' 'ecdsa'
  '';

  disabledTests = [
    # https://github.com/mpdavis/python-jose/issues/176
    "test_key_too_short"
  ];

  propagatedBuildInputs = [ future six ecdsa rsa ];

  meta = with stdenv.lib; {
    homepage = "https://github.com/mpdavis/python-jose";
    description = "A JOSE implementation in Python";
    license = licenses.mit;
    maintainers = [ maintainers.jhhuh ];
  };
}