Merge pull request #174074 from dotlambda/keyring-23.5.1

authored by

Martin Weinelt and committed by
GitHub
f1e15661 3bd27912

+5 -4
+5 -4
pkgs/development/python-modules/keyring/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "keyring"; 16 - version = "23.5.0"; 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-kBJQjhQagL0cC2d41cYQ3Z+MRk11rGd0JIUAUD+XL7k="; 22 }; 23 24 nativeBuildInputs = [ ··· 28 propagatedBuildInputs = [ 29 # this should be optional, however, it has a different API 30 importlib-metadata # see https://github.com/jaraco/keyring/issues/503#issuecomment-798973205 31 - 32 - dbus-python 33 jeepney 34 secretstorage 35 ];
··· 13 14 buildPythonPackage rec { 15 pname = "keyring"; 16 + version = "23.5.1"; 17 disabled = pythonOlder "3.7"; 18 19 + format = "pyproject"; 20 + 21 src = fetchPypi { 22 inherit pname version; 23 + hash = "sha256-3uUCzfGKmCEb70KO6hFFajPABxiy8IUk/Vcnx/Qkv/0="; 24 }; 25 26 nativeBuildInputs = [ ··· 30 propagatedBuildInputs = [ 31 # this should be optional, however, it has a different API 32 importlib-metadata # see https://github.com/jaraco/keyring/issues/503#issuecomment-798973205 33 + ] ++ lib.optionals stdenv.isLinux [ 34 jeepney 35 secretstorage 36 ];