diff options
| author | Charlie Collard <charlie.collard@marshmallow.co> | 2025-10-29 11:38:10 +0000 |
|---|---|---|
| committer | Charlie Collard <charlie.collard@marshmallow.co> | 2025-10-29 11:45:23 +0000 |
| commit | 453a7b57906ae952db3df66c86d5a4083c3c19e9 (patch) | |
| tree | 04f1ab6af5b7043d8be648f908943e9f22b34f85 /pkgs/development/python-modules/python-openstackclient | |
| parent | df946cc9a50ca3d8007949a412136c01414848c4 (diff) | |
| parent | 591be394c2247b9dde827e9a17498da15076d640 (diff) | |
Merge branch 'master' of github.com:charlie-collard/nixpkgs into patch-1
Diffstat (limited to 'pkgs/development/python-modules/python-openstackclient')
| -rw-r--r-- | pkgs/development/python-modules/python-openstackclient/default.nix | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix index 2933fa619b55..3898978c74d8 100644 --- a/pkgs/development/python-modules/python-openstackclient/default.nix +++ b/pkgs/development/python-modules/python-openstackclient/default.nix @@ -22,7 +22,6 @@ python-watcherclient, python-zaqarclient, python-zunclient, - pythonOlder, requests-mock, requests, setuptools, @@ -34,14 +33,13 @@ buildPythonPackage rec { pname = "python-openstackclient"; - version = "7.2.0"; + version = "8.2.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchPypi { - inherit pname version; - hash = "sha256-9je3W78PU3iZJjzVMSPXPxBZ0vMYY5xSLJA9zBJ7O5I="; + pname = "python_openstackclient"; + inherit version; + hash = "sha256-1hKvGN/GbMjzHmzpZpC2wnOt6KJA7EC39INaiJb7vgE="; }; build-system = [ @@ -59,7 +57,9 @@ buildPythonPackage rec { python-cinderclient python-keystoneclient requests - ]; + ] + # to support proxy envs like ALL_PROXY in requests + ++ requests.optional-dependencies.socks; nativeCheckInputs = [ ddt @@ -69,7 +69,8 @@ buildPythonPackage rec { checkPhase = '' runHook preCheck - stestr run + stestr run -E \ + "openstackclient.tests.unit.network.v2.test_security_group_network.(TestCreateSecurityGroupNetwork.(test_create_with_tags|test_create_with_no_tag|test_create_min_options|test_create_all_options)|TestShowSecurityGroupNetwork.test_show_all_options)" runHook postCheck ''; @@ -106,6 +107,6 @@ buildPythonPackage rec { mainProgram = "openstack"; homepage = "https://github.com/openstack/python-openstackclient"; license = licenses.asl20; - maintainers = teams.openstack.members; + teams = [ teams.openstack ]; }; } |
