From 2bc23a4281965c8598358f676b92cb061de9f572 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 20 Jul 2025 13:00:38 +0300 Subject: [PATCH] python312Packages.lmfit: no with lib; in meta --- pkgs/development/python-modules/lmfit/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/lmfit/default.nix b/pkgs/development/python-modules/lmfit/default.nix index 697d120dd744..9825021c6e2e 100644 --- a/pkgs/development/python-modules/lmfit/default.nix +++ b/pkgs/development/python-modules/lmfit/default.nix @@ -58,11 +58,11 @@ buildPythonPackage rec { disabledTests = [ "test_check_ast_errors" ]; - meta = with lib; { + meta = { description = "Least-Squares Minimization with Bounds and Constraints"; homepage = "https://lmfit.github.io/lmfit-py/"; changelog = "https://github.com/lmfit/lmfit-py/releases/tag/${version}"; - license = licenses.bsd3; - maintainers = with maintainers; [ nomeata ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ nomeata ]; }; }