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 , buildPythonPackage
, fetchPypi , fetchPypi
, cryptography , cryptography
, ecdsa
, pytest-cov
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pyjwt"; pname = "pyjwt";
version = "2.3.0"; version = "2.4.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
pname = "PyJWT"; pname = "PyJWT";
inherit version; inherit version;
sha256 = "sha256-uIi01W8G9tzXdyEMM05pxze+dHVdPl6e4/5n3Big7kE="; sha256 = "sha256-1CkIIIxpmzuXPL6wGpabpqlsgh7vscW/5MOQwB1nq7o=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
cryptography cryptography
ecdsa
]; ];
checkInputs = [ checkInputs = [
pytest-cov
pytestCheckHook pytestCheckHook
]; ];