mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
66 lines
1.1 KiB
Nix
66 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
asteval,
|
|
dill,
|
|
fetchPypi,
|
|
matplotlib,
|
|
numpy,
|
|
pandas,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
scipy,
|
|
setuptools-scm,
|
|
setuptools,
|
|
uncertainties,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lmfit";
|
|
version = "1.3.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Mb7q4fAnwbjBTc1/LoSIqAt1+zied/ymd1Sb3C/ll7s=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail "--cov=lmfit --cov-report html" ""
|
|
'';
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
asteval
|
|
dill
|
|
numpy
|
|
scipy
|
|
uncertainties
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
matplotlib
|
|
pandas
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "lmfit" ];
|
|
|
|
disabledTests = [ "test_check_ast_errors" ];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|