nixos/doh-server: init
[NixPkgs.git] / pkgs / development / python-modules / pyjwkest / default.nix
blob4663752311d1e43cb92466bf747d83e15f3cc54f
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   future,
6   pycryptodomex,
7   pytest,
8   requests,
9   six,
12 buildPythonPackage rec {
13   pname = "pyjwkest";
14   version = "1.4.2";
15   format = "setuptools";
17   meta = {
18     description = "Implementation of JWT, JWS, JWE and JWK";
19     homepage = "https://github.com/rohe/pyjwkest";
20     license = lib.licenses.asl20;
21   };
23   src = fetchPypi {
24     inherit pname version;
25     sha256 = "5560fd5ba08655f29ff6ad1df1e15dc05abc9d976fcbcec8d2b5167f49b70222";
26   };
28   buildInputs = [ pytest ];
29   propagatedBuildInputs = [
30     future
31     pycryptodomex
32     requests
33     six
34   ];