3
0
Fork 0
forked from mirrors/nixpkgs

python310Packages.pyjwt: 2.3.0 -> 2.4.0

This commit is contained in:
Sandro Jäckel 2022-05-30 05:08:05 +02:00
parent 260ed44242
commit a02ab4d6ae
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -2,30 +2,26 @@
, buildPythonPackage
, fetchPypi
, cryptography
, ecdsa
, pytest-cov
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyjwt";
version = "2.3.0";
version = "2.4.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "PyJWT";
inherit version;
sha256 = "sha256-uIi01W8G9tzXdyEMM05pxze+dHVdPl6e4/5n3Big7kE=";
sha256 = "sha256-1CkIIIxpmzuXPL6wGpabpqlsgh7vscW/5MOQwB1nq7o=";
};
propagatedBuildInputs = [
cryptography
ecdsa
];
checkInputs = [
pytest-cov
pytestCheckHook
];