1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 future,
6 pycryptodomex,
7 pytest,
8 requests,
9 six,
10}:
11
12buildPythonPackage rec {
13 pname = "pyjwkest";
14 version = "1.4.2";
15 format = "setuptools";
16
17 meta = {
18 description = "Implementation of JWT, JWS, JWE and JWK";
19 homepage = "https://github.com/rohe/pyjwkest";
20 license = lib.licenses.asl20;
21 };
22
23 src = fetchPypi {
24 inherit pname version;
25 sha256 = "5560fd5ba08655f29ff6ad1df1e15dc05abc9d976fcbcec8d2b5167f49b70222";
26 };
27
28 buildInputs = [ pytest ];
29 propagatedBuildInputs = [
30 future
31 pycryptodomex
32 requests
33 six
34 ];
35}