python310Packages.python-glanceclient: 3.6.0 -> 4.0.0
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
parent
f1a5ae8f8d
commit
ab17708c10
1 changed files with 9 additions and 3 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue