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