1{ lib, fetchPypi, buildPythonPackage
2# buildInputs
3, six
4, setuptools
5, pyopenssl
6, cryptography
7}:
8
9buildPythonPackage rec {
10 pname = "josepy";
11 version = "1.1.0";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "fb5c62c77d26e04df29cb5ecd01b9ce69b6fcc9e521eb1ca193b7faa2afa7086";
16 };
17
18 propagatedBuildInputs = [
19 pyopenssl
20 cryptography
21 six
22 setuptools
23 ];
24
25 # too many unpackaged check requirements
26 doCheck = false;
27
28 meta = with lib; {
29 description = "JOSE protocol implementation in Python";
30 homepage = https://github.com/jezdez/josepy;
31 license = licenses.asl20;
32 maintainers = with maintainers; [ ];
33 };
34}
35