Merge pull request #147334 from dotlambda/keyring-23.3.0

This commit is contained in:
Sandro 2021-11-25 12:46:50 +01:00 committed by GitHub
commit fc6c8f09d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "keyring"; pname = "keyring";
version = "23.2.1"; version = "23.3.0";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "6334aee6073db2fb1f30892697b1730105b5e9a77ce7e61fca6b435225493efe"; sha256 = "sha256-Ct7Khr6zoveTYtksf7cZSb51HnJGPywTUOKrXA+9NwE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -43,12 +43,7 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
# Keychain communications isn't possible in our build environment disabledTests = [
# keyring.errors.KeyringError: Can't get password from keychain: (-25307, 'Unknown Error')
disabledTests = lib.optionals (stdenv.isDarwin) [
"test_multiprocess_get"
"test_multiprocess_get_after_native_get"
] ++ [
# E ValueError: too many values to unpack (expected 1) # E ValueError: too many values to unpack (expected 1)
"test_entry_point" "test_entry_point"
]; ];