18 buildPythonPackage rec {
23 disabled = pythonOlder "3.8";
26 inherit pname version;
27 hash = "sha256-Mb7q4fAnwbjBTc1/LoSIqAt1+zied/ymd1Sb3C/ll7s=";
31 substituteInPlace pyproject.toml \
32 --replace-fail "--cov=lmfit --cov-report html" ""
54 pythonImportsCheck = [ "lmfit" ];
56 disabledTests = [ "test_check_ast_errors" ];
59 description = "Least-Squares Minimization with Bounds and Constraints";
60 homepage = "https://lmfit.github.io/lmfit-py/";
61 changelog = "https://github.com/lmfit/lmfit-py/releases/tag/${version}";
62 license = licenses.bsd3;
63 maintainers = with maintainers; [ nomeata ];