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 ]; }; }