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/aspell-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/development/python-modules/aspell-python') diff --git a/pkgs/development/python-modules/aspell-python/default.nix b/pkgs/development/python-modules/aspell-python/default.nix index 6a814931a6af..7bf0bd859bb6 100644 --- a/pkgs/development/python-modules/aspell-python/default.nix +++ b/pkgs/development/python-modules/aspell-python/default.nix @@ -46,10 +46,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "aspell" ]; - meta = with lib; { + meta = { description = "Python wrapper for aspell (C extension and Python version)"; homepage = "https://github.com/WojciechMula/aspell-python"; - license = licenses.bsd3; + license = lib.licenses.bsd3; maintainers = [ ]; }; } -- cgit v1.2.3