python3Packages.os-client-config: 2.1.0 -> 2.3.0

Diff: https://github.com/openstack/os-client-config/compare/2.1.0...2.3.0
This commit is contained in:
Anthony ROUSSEL
2025-07-23 22:03:38 +02:00
parent e75ca8f04c
commit 4b92d1d872

View File

@@ -1,13 +1,12 @@
{
lib,
buildPythonPackage,
fetchpatch,
fetchPypi,
fixtures,
hacking,
jsonschema,
openstacksdk,
oslotest,
pbr,
python-glanceclient,
setuptools,
stestr,
@@ -18,31 +17,27 @@
buildPythonPackage rec {
pname = "os-client-config";
version = "2.1.0";
version = "2.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-q8OKNR+MAG009+5fP2SN5ePs9kVcxdds/YidKRzfP04=";
pname = "os_client_config";
inherit version;
hash = "sha256-4WomDy/VAK8U8Ve5t7fWkpLOg7D4pGHsaM5qikKWfL0=";
};
patches = [
# Fix compatibility with openstacksdk 4.5.0
(fetchpatch {
url = "https://github.com/openstack/os-client-config/commit/46bc2deb4c6762dc1dd674686283eb3fa4c1d5e6.patch";
hash = "sha256-wZdwCbgrRg0mxs542zjWAlXn0PzCotlbZaEyinYKwb4=";
})
build-system = [
pbr
setuptools
];
build-system = [ setuptools ];
dependencies = [
openstacksdk
pbr
python-glanceclient
];
nativeCheckInputs = [
hacking
fixtures
jsonschema
subunit