Merge pull request #173888 from r-ryantm/auto-update/python3.10-python-keystoneclient

python310Packages.python-keystoneclient: 4.4.0 -> 4.5.0
main
Fabian Affolter 2 years ago committed by GitHub
commit 6253c56c87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      pkgs/development/python-modules/python-keystoneclient/default.nix

@ -6,6 +6,7 @@
, oslo-config
, oslo-serialization
, pbr
, pythonOlder
, requests-mock
, stestr
, testresources
@ -14,11 +15,14 @@
buildPythonPackage rec {
pname = "python-keystoneclient";
version = "4.4.0";
version = "4.5.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "fc17ca9a1aa493104b496ba347f12507f271b5b6e819f4de4aef6574918aa071";
hash = "sha256-bX8FxpLn2yaSd4KEx3mubOqLIVmRS0QXpfoL/qHinNw=";
};
propagatedBuildInputs = [
@ -40,7 +44,9 @@ buildPythonPackage rec {
stestr run
'';
pythonImportsCheck = [ "keystoneclient" ];
pythonImportsCheck = [
"keystoneclient"
];
meta = with lib; {
description = "Client Library for OpenStack Identity";

Loading…
Cancel
Save