python310Packages.python-glanceclient: 3.6.0 -> 4.0.0

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
R. RyanTM 2022-05-22 13:27:11 -07:00 committed by GitHub
parent f1a5ae8f8d
commit ab17708c10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,6 +11,7 @@
, oslo-i18n
, wrapt
, pyopenssl
, pythonOlder
, stestr
, testscenarios
, ddt
@ -19,11 +20,14 @@
buildPythonApplication rec {
pname = "python-glanceclient";
version = "3.6.0";
version = "4.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-gi1IYtWJL2pltoKTRy5gsHTRwHlp0GHoBMbh1UP5g9o=";
hash = "sha256-a3tFLmSKuaKbBQy32EkU7sPIEQtN5gaDqoGT03gka+w=";
};
postPatch = ''
@ -54,7 +58,9 @@ buildPythonApplication rec {
stestr run
'';
pythonImportsCheck = [ "glanceclient" ];
pythonImportsCheck = [
"glanceclient"
];
meta = with lib; {
description = "Python bindings for the OpenStack Images API";