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/atlassian-python-api/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/development/python-modules/atlassian-python-api') diff --git a/pkgs/development/python-modules/atlassian-python-api/default.nix b/pkgs/development/python-modules/atlassian-python-api/default.nix index 05396c3dc2ec..fdfcc6a6350e 100644 --- a/pkgs/development/python-modules/atlassian-python-api/default.nix +++ b/pkgs/development/python-modules/atlassian-python-api/default.nix @@ -47,11 +47,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "atlassian" ]; - meta = with lib; { + meta = { description = "Python Atlassian REST API Wrapper"; homepage = "https://github.com/atlassian-api/atlassian-python-api"; changelog = "https://github.com/atlassian-api/atlassian-python-api/releases/tag/${src.tag}"; - license = licenses.asl20; - maintainers = with maintainers; [ arnoldfarkas ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ arnoldfarkas ]; }; } -- cgit v1.2.3