python310Packages.keyring: 23.9.3 -> 23.11.0

https://github.com/jaraco/keyring/blob/v23.11.0/CHANGES.rst
This commit is contained in:
Robert Schütz 2022-11-10 11:51:06 -08:00 committed by Robert Schütz
parent 5194400063
commit f0a73a2a02

View file

@ -14,13 +14,13 @@
buildPythonPackage rec {
pname = "keyring";
version = "23.9.3";
version = "23.11.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-abAd2DxC9ZAlD+eh9QP8IpsU3oOFcxSxkzo92/WVxKU=";
hash = "sha256-rRkiY+LN1fEodd7cLaE1NDWafnYOd/jQS1CWioIcI2E=";
};
nativeBuildInputs = [
@ -32,11 +32,10 @@ buildPythonPackage rec {
] ++ lib.optionals stdenv.isLinux [
jeepney
secretstorage
] ++ lib.optionals (pythonOlder "3.10") [
] ++ lib.optionals (pythonOlder "3.12") [
importlib-metadata
];
pythonImportsCheck = [
"keyring"
"keyring.backend"
@ -46,11 +45,6 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# E ValueError: too many values to unpack (expected 1)
"test_entry_point"
];
disabledTestPaths = [
"tests/backends/test_macOS.py"
];
@ -58,6 +52,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";
license = licenses.mit;
maintainers = with maintainers; [ lovek323 dotlambda ];
platforms = platforms.unix;