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