python.pkgs.pyjwt: 1.5.3 -> 1.6.4

This commit is contained in:
Robert Schütz
2018-08-21 01:33:44 +02:00
committed by Robin Gloster
parent 080b8cca17
commit 5786cba889
2 changed files with 25 additions and 29 deletions

View File

@@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchPypi
, cryptography, ecdsa
, pytestrunner, pytestcov, pytest }:
buildPythonPackage rec {
pname = "PyJWT";
version = "1.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "4ee413b357d53fd3fb44704577afac88e72e878716116270d722723d65b42176";
};
propagatedBuildInputs = [ cryptography ecdsa ];
checkInputs = [ pytestrunner pytestcov pytest ];
meta = with lib; {
description = "JSON Web Token implementation in Python";
homepage = https://github.com/jpadilla/pyjwt;
license = licenses.mit;
maintainers = with maintainers; [ prikhi ];
};
}