Merge pull request #291151 from risicle/ris-jwcrypto-1.5.4

python3Packages.jwcrypto: 1.5.1 -> 1.5.4
This commit is contained in:
Thomas Gerbet 2024-02-24 23:01:04 +01:00 committed by GitHub
commit 01e1fbc625
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,26 +3,36 @@
, fetchPypi
, cryptography
, deprecated
, pytestCheckHook
, pythonOlder
, setuptools
, typing-extensions
}:
buildPythonPackage rec {
pname = "jwcrypto";
version = "1.5.1";
format = "setuptools";
version = "1.5.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-SLub9DN3cTYlNXnlK3X/4PmkpyHRM9AfRaC5HtX08a4=";
hash = "sha256-CBX7q2E9uZuthWkdpfE2+IYEIzlmZ3KKJkvPpuHbNrA=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
cryptography
deprecated
typing-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"jwcrypto"
];