1{ lib, buildPythonPackage, fetchPypi, 2 future, pycryptodomex, pytest, requests, six 3}: 4 5buildPythonPackage rec { 6 pname = "pyjwkest"; 7 version = "1.4.2"; 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 = "5560fd5ba08655f29ff6ad1df1e15dc05abc9d976fcbcec8d2b5167f49b70222"; 18 }; 19 20 buildInputs = [ pytest ]; 21 propagatedBuildInputs = [ future pycryptodomex requests six ]; 22}