Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pyjwkest / default.nix
blob945cc20528e3d9f0269b3e8e001de5d13f6d38a5
1 { lib, buildPythonPackage, fetchPypi,
2   future, pycryptodomex, pytest, requests, six
3 }:
5 buildPythonPackage rec {
6   pname = "pyjwkest";
7   version = "1.4.2";
9   meta = {
10     description = "Implementation of JWT, JWS, JWE and JWK";
11     homepage = "https://github.com/rohe/pyjwkest";
12     license = lib.licenses.asl20;
13   };
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "5560fd5ba08655f29ff6ad1df1e15dc05abc9d976fcbcec8d2b5167f49b70222";
18   };
20   buildInputs = [ pytest ];
21   propagatedBuildInputs = [ future pycryptodomex requests six ];