python310Packages.keyring: 23.13.1 -> 24.2.0

Changelog: https://github.com/jaraco/keyring/blob/v24.2.0/NEWS.rst
This commit is contained in:
Robert Schütz 2023-07-18 10:45:24 -07:00 committed by Martin Weinelt
parent 1ee622b10f
commit 2e5cb27eb9

View file

@ -14,13 +14,13 @@
buildPythonPackage rec {
pname = "keyring";
version = "23.13.1";
version = "24.2.0";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-ui4VqbNeIZCNCq9OCkesxS1q4zRE3w2itJ1BpG721ng=";
hash = "sha256-ygdGoZ7EISGfTXE/hI+il6ZhqKjBUEhn5Vv7XgkJFQk=";
};
nativeBuildInputs = [
@ -54,7 +54,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Store and access your passwords safely";
homepage = "https://github.com/jaraco/keyring";
changelog = "https://github.com/jaraco/keyring/blob/v${version}/CHANGES.rst";
changelog = "https://github.com/jaraco/keyring/blob/v${version}/NEWS.rst";
license = licenses.mit;
maintainers = with maintainers; [ lovek323 dotlambda ];
platforms = platforms.unix;