summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-openstackclient
diff options
context:
space:
mode:
authorWolfgang Walther <walther@technowledgy.de>2025-12-10 17:23:38 +0000
committerGitHub <noreply@github.com>2025-12-10 17:23:38 +0000
commitaf6d3ec4ba8ead90c5407e751985adec821b8cd2 (patch)
tree7fd03d92ada398363a5492c74289670834704392 /pkgs/development/python-modules/python-openstackclient
parent558250507ecca4df5b6dddd71512c33c78eb3b29 (diff)
parent567e8dfd8eddc5468e6380fc563ab8a27422ab1d (diff)
treewide: clean up 'meta = with' pattern (#443046)
Diffstat (limited to 'pkgs/development/python-modules/python-openstackclient')
-rw-r--r--pkgs/development/python-modules/python-openstackclient/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix
index 41cad8e5e65f..e981bc874b27 100644
--- a/pkgs/development/python-modules/python-openstackclient/default.nix
+++ b/pkgs/development/python-modules/python-openstackclient/default.nix
@@ -104,11 +104,11 @@ buildPythonPackage rec {
};
};
- meta = with lib; {
+ meta = {
description = "OpenStack Command-line Client";
mainProgram = "openstack";
homepage = "https://github.com/openstack/python-openstackclient";
- license = licenses.asl20;
- teams = [ teams.openstack ];
+ license = lib.licenses.asl20;
+ teams = [ lib.teams.openstack ];
};
}