pythonPackages.pyjwkest: init at 1.3.2
This commit is contained in:
parent
4fe7f3e561
commit
3909871991
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/pyjwkest/default.nix
Normal file
23
pkgs/development/python-modules/pyjwkest/default.nix
Normal 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 ];
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue