From d42e03d24ff407bda6d8292369f4857fceb1b62a Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 10 Mar 2025 14:13:39 +0200 Subject: [PATCH] python312Packages.enlighten: no with lib; in meta --- pkgs/development/python-modules/enlighten/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/enlighten/default.nix b/pkgs/development/python-modules/enlighten/default.nix index 13f4a36420cc..d16713dbcc9f 100644 --- a/pkgs/development/python-modules/enlighten/default.nix +++ b/pkgs/development/python-modules/enlighten/default.nix @@ -43,11 +43,11 @@ buildPythonPackage rec { "test_autorefresh" ]; - meta = with lib; { + meta = { description = "Enlighten Progress Bar for Python Console Apps"; homepage = "https://github.com/Rockhopper-Technologies/enlighten"; changelog = "https://github.com/Rockhopper-Technologies/enlighten/releases/tag/${version}"; - license = with licenses; [ mpl20 ]; - maintainers = with maintainers; [ veprbl ]; + license = with lib.licenses; [ mpl20 ]; + maintainers = with lib.maintainers; [ veprbl ]; }; }