5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
56 lines
953 B
Nix
56 lines
953 B
Nix
{ lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
setuptools-scm,
|
|
asteval,
|
|
dill,
|
|
numpy,
|
|
scipy,
|
|
uncertainties,
|
|
pytestCheckHook,
|
|
pandas,
|
|
matplotlib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "lmfit";
|
|
version = "1.3.0";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-foI668BSN8qA0z0mDO27peJhkMzsn69ZXmgUOQneDJM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml --replace "--cov=lmfit --cov-report html" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
asteval
|
|
dill
|
|
numpy
|
|
scipy
|
|
uncertainties
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pandas
|
|
matplotlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Least-Squares Minimization with Bounds and Constraints";
|
|
homepage = "https://lmfit-py.readthedocs.io/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nomeata ];
|
|
};
|
|
}
|