Merge pull request #251344 from fabaff/keyrings-alt-bump

python311Packages.keyrings-alt: 4.2.0 -> 5.0.0

authored by Fabian Affolter and committed by GitHub e0f0ecbc 1f84a4a1

+13 -12
+13 -12
pkgs/development/python-modules/keyrings-alt/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , jaraco-classes 5 + , keyring 6 + , pytestCheckHook 4 7 , pythonOlder 5 - , isPy27 6 - , six 7 - 8 - , pytestCheckHook 9 - , keyring 10 8 , setuptools-scm 11 9 }: 12 10 13 11 buildPythonPackage rec { 14 - pname = "keyrings.alt"; 15 - version = "4.2.0"; 12 + pname = "keyrings-alt"; 13 + version = "5.0.0"; 16 14 format = "pyproject"; 17 - disabled = isPy27; 15 + 16 + disabled = pythonOlder "3.8"; 18 17 19 18 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-K6PVZEG6Bjf1+cCWBo9nAQrART+dC2Jt4qowGTU7ZDE="; 19 + pname = "keyrings.alt"; 20 + inherit version; 21 + hash = "sha256-nURstHu86pD/ouzD6AA6z0FXP8IBv0S0vxO9DhFISCg="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ ··· 26 26 ]; 27 27 28 28 propagatedBuildInputs = [ 29 - six 29 + jaraco-classes 30 30 ]; 31 31 32 32 nativeCheckInputs = [ ··· 39 39 ]; 40 40 41 41 meta = with lib; { 42 - license = licenses.mit; 43 42 description = "Alternate keyring implementations"; 44 43 homepage = "https://github.com/jaraco/keyrings.alt"; 44 + changelog = "https://github.com/jaraco/keyrings.alt/blob/v${version}/NEWS.rst"; 45 + license = licenses.mit; 45 46 maintainers = with maintainers; [ nyarly ]; 46 47 }; 47 48 }