summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-openstackclient
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2024-09-30 15:41:25 +0200
committerGitHub <noreply@github.com>2024-09-30 15:41:25 +0200
commit27b4e638c011ef5a265a944ff494a38291b81e67 (patch)
tree7d465e16500ece9682d1f4abcfb17d0d03b7df49 /pkgs/development/python-modules/python-openstackclient
parent97321f17bccb5f81f42b93123973ce64e720261a (diff)
parent543781083afffe71d6250862eb494c244355fa11 (diff)
treewide: replace passthru.optional-dependencies with optional-dependencies (#345232)
Diffstat (limited to 'pkgs/development/python-modules/python-openstackclient')
-rw-r--r--pkgs/development/python-modules/python-openstackclient/default.nix37
1 files changed, 19 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix
index c82331304a0f..3fa1de5b4e21 100644
--- a/pkgs/development/python-modules/python-openstackclient/default.nix
+++ b/pkgs/development/python-modules/python-openstackclient/default.nix
@@ -72,25 +72,26 @@ buildPythonPackage rec {
pythonImportsCheck = [ "openstackclient" ];
+ optional-dependencies = {
+ # See https://github.com/openstack/python-openstackclient/blob/master/doc/source/contributor/plugins.rst
+ cli-plugins = [
+ osc-placement
+ python-aodhclient
+ python-barbicanclient
+ python-designateclient
+ python-heatclient
+ python-ironicclient
+ python-magnumclient
+ python-manilaclient
+ python-mistralclient
+ python-neutronclient
+ python-watcherclient
+ python-zaqarclient
+ python-zunclient
+ ];
+ };
+
passthru = {
- optional-dependencies = {
- # See https://github.com/openstack/python-openstackclient/blob/master/doc/source/contributor/plugins.rst
- cli-plugins = [
- osc-placement
- python-aodhclient
- python-barbicanclient
- python-designateclient
- python-heatclient
- python-ironicclient
- python-magnumclient
- python-manilaclient
- python-mistralclient
- python-neutronclient
- python-watcherclient
- python-zaqarclient
- python-zunclient
- ];
- };
tests.version = testers.testVersion {
package = python-openstackclient;
command = "openstack --version";