1{ lib, buildPythonPackage, fetchPypi,
2 future, pycryptodomex, pytest, requests, six
3}:
4
5buildPythonPackage rec {
6 pname = "pyjwkest";
7 version = "1.4.0";
8
9 meta = {
10 description = "Implementation of JWT, JWS, JWE and JWK";
11 homepage = https://github.com/rohe/pyjwkest;
12 license = lib.licenses.asl20;
13 };
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "128e3c81d02993ac4cd7e29ef7aac767d91daa59380e6883ae589092945e4aad";
18 };
19
20 buildInputs = [ pytest ];
21 propagatedBuildInputs = [ future pycryptodomex requests six ];
22}