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 <walther@technowledgy.de>
This commit is contained in:
Ihar Hrachyshka
2025-12-10 18:56:58 +01:00
committed by Wolfgang Walther
parent 4e42d5e03a
commit cca3b04b44
16918 changed files with 55288 additions and 55280 deletions

View File

@@ -19,10 +19,10 @@ buildPythonPackage rec {
doCheck = !isPyPy;
meta = with lib; {
meta = {
homepage = "https://pypi.python.org/pypi/enum/";
description = "Robust enumerated type support in Python";
license = licenses.gpl2;
license = lib.licenses.gpl2;
};
}