python313Packages.os-client-config: fix build with openstacksdk 4.5.0, update meta

This commit is contained in:
Sandro Jäckel
2025-04-22 03:47:37 +02:00
parent cd6e341249
commit d70231ac4b
@@ -1,6 +1,7 @@
{
lib,
buildPythonPackage,
fetchpatch,
fetchPypi,
fixtures,
hacking,
@@ -25,6 +26,14 @@ buildPythonPackage rec {
hash = "sha256-q8OKNR+MAG009+5fP2SN5ePs9kVcxdds/YidKRzfP04=";
};
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 = [ setuptools ];
dependencies = [
@@ -54,8 +63,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "os_client_config" ];
meta = with lib; {
homepage = "https://opendev.org/openstack/os-client-config";
description = "Collect client configuration for using OpenStack in consistent and comprehensive manner";
description = "Unified config handling for client libraries and programs";
homepage = "https://github.com/openstack/os-client-config";
license = licenses.asl20;
maintainers = teams.openstack.members;
};