Merge pull request #172805 from r-ryantm/auto-update/python3.10-jwcrypto

python310Packages.jwcrypto: 1.2 -> 1.3

authored by Fabian Affolter and committed by GitHub 841b0dcf db312206

+11 -3
+11 -3
pkgs/development/python-modules/jwcrypto/default.nix
··· 3 3 , fetchPypi 4 4 , cryptography 5 5 , deprecated 6 + , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "jwcrypto"; 10 - version = "1.2"; 11 + version = "1.3"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 11 15 12 16 src = fetchPypi { 13 17 inherit pname version; 14 - sha256 = "sha256-7fQwkyFyHlFhzvzN1ksEUJ4Dkk/q894IW0d4B2WYmuM="; 18 + hash = "sha256-DWRhuhP3wnHYusUBjuYN28rl/zlAP6+kI3X1fQjjmLs="; 15 19 }; 16 20 17 21 propagatedBuildInputs = [ ··· 19 23 deprecated 20 24 ]; 21 25 26 + pythonImportsCheck = [ 27 + "jwcrypto" 28 + ]; 29 + 22 30 meta = with lib; { 23 31 description = "Implementation of JOSE Web standards"; 24 32 homepage = "https://github.com/latchset/jwcrypto"; 25 33 license = licenses.lgpl3Plus; 26 - maintainers = [ maintainers.costrouc ]; 34 + maintainers = with maintainers; [ costrouc ]; 27 35 }; 28 36 }