about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/josepy/default.nix
blob: b6e6f47b64b127c958df2e1cc64eae01d9890199 (plain) (blame)
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
{ lib, fetchPypi, buildPythonPackage
# buildInputs
, six
, setuptools
, pyopenssl
, cryptography
, mock
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "josepy";
  version = "1.6.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0aab1c3ceffe045e7fd5bcfe7685e27e9d2758518d9ba7116b5de34087e70bf5";
  };

  postPatch = ''
    # remove coverage flags
    sed -i '/addopts/d' pytest.ini
  '';

  propagatedBuildInputs = [
    pyopenssl
    cryptography
    six
    setuptools
  ];

  checkInputs = [
    mock
    pytestCheckHook
  ];

  meta = with lib; {
    description = "JOSE protocol implementation in Python";
    homepage = "https://github.com/jezdez/josepy";
    license = licenses.asl20;
    maintainers = with maintainers; [  ];
  };
}