Merge pull request #324283 from fabaff/asteval-bump

python312Packages.asteval: 0.9.33 -> 1.0.0
This commit is contained in:
Fabian Affolter 2024-07-03 14:44:13 +02:00 committed by GitHub
commit 50e7823ca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "asteval";
version = "0.9.33";
version = "1.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -18,12 +18,12 @@ buildPythonPackage rec {
owner = "lmfit";
repo = "asteval";
rev = "refs/tags/${version}";
hash = "sha256-j07HH84cn2AA5DyMcM7sXiBubCjZP67RJXVcErMPyBk=";
hash = "sha256-2Oj/3tMDC5s4OouSarAJo3TCwBOCY3DYjAZk3TcV9CQ=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail " --cov=asteval --cov-report xml" ""
substituteInPlace pyproject.toml \
--replace-fail "--cov=asteval --cov-report html" ""
'';
build-system = [ setuptools-scm ];