From 567e8dfd8eddc5468e6380fc563ab8a27422ab1d Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 10 Dec 2025 17:44:00 +0100 Subject: treewide: clean up 'meta = with' pattern This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther --- pkgs/development/python-modules/python-openstackclient/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development/python-modules/python-openstackclient') 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 ]; }; } -- cgit v1.2.3