diff options
| author | Ihar Hrachyshka <ihar.hrachyshka@gmail.com> | 2025-12-10 17:44:00 +0100 |
|---|---|---|
| committer | Wolfgang Walther <walther@technowledgy.de> | 2025-12-10 18:09:49 +0100 |
| commit | 567e8dfd8eddc5468e6380fc563ab8a27422ab1d (patch) | |
| tree | 45e3f2c93ca5f9eb36a27cf219ae114638af0fd4 /pkgs/development/python-modules/datasette-template-sql | |
| parent | nixos/scrutiny: conform to shellcheck (#469204) (diff) | |
| download | nixpkgs-567e8dfd8eddc5468e6380fc563ab8a27422ab1d.tar.gz | |
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>
Diffstat (limited to 'pkgs/development/python-modules/datasette-template-sql')
| -rw-r--r-- | pkgs/development/python-modules/datasette-template-sql/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/datasette-template-sql/default.nix b/pkgs/development/python-modules/datasette-template-sql/default.nix index cdc245458b43..a20972838b1e 100644 --- a/pkgs/development/python-modules/datasette-template-sql/default.nix +++ b/pkgs/development/python-modules/datasette-template-sql/default.nix @@ -27,10 +27,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "datasette_template_sql" ]; - meta = with lib; { + meta = { description = "Datasette plugin for executing SQL queries from templates"; homepage = "https://datasette.io/plugins/datasette-template-sql"; - license = licenses.asl20; - maintainers = with maintainers; [ MostAwesomeDude ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ MostAwesomeDude ]; }; } |
