diff options
| author | Martin Weinelt <mweinelt@users.noreply.github.com> | 2024-09-30 15:41:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 15:41:25 +0200 |
| commit | 27b4e638c011ef5a265a944ff494a38291b81e67 (patch) | |
| tree | 7d465e16500ece9682d1f4abcfb17d0d03b7df49 /pkgs/development/python-modules/python-openstackclient | |
| parent | 97321f17bccb5f81f42b93123973ce64e720261a (diff) | |
| parent | 543781083afffe71d6250862eb494c244355fa11 (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.nix | 37 |
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"; |
