3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.pyjwkest: init at 1.3.2

This commit is contained in:
betaboon 2017-08-31 21:07:15 +02:00 committed by Frederik Rietdijk
parent 4fe7f3e561
commit 3909871991
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi,
future, pycryptodomex, pytest, requests, six
}:
buildPythonPackage rec {
pname = "pyjwkest";
name = "${pname}-${version}";
version = "1.3.2";
meta = {
description = "Implementation of JWT, JWS, JWE and JWK";
homepage = https://github.com/rohe/pyjwkest;
license = lib.licenses.asl20;
};
src = fetchPypi {
inherit pname version;
sha256 = "11rrswsmma3wzi2qnmq929323yc6i9fkjsv8zr7b3vajd72yr49d";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ future pycryptodomex requests six ];
}

View file

@ -251,6 +251,8 @@ in {
libglade = pkgs.gnome2.libglade;
};
pyjwkest = callPackage ../development/python-modules/pyjwkest { };
pyqt4 = callPackage ../development/python-modules/pyqt/4.x.nix {
pythonPackages = self;
};