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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "fb5c62c77d26e04df29cb5ecd01b9ce69b6fcc9e521eb1ca193b7faa2afa7086";
  };

  propagatedBuildInputs = [
    pyopenssl
    cryptography
    six
    setuptools
  ];

  # too many unpackaged check requirements
  doCheck = false;

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