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

Loading…
Cancel
Save