python3Packages.asteval: 1.0.6 -> 1.0.7 (#459672)

This commit is contained in:
Fabian Affolter
2025-11-08 22:47:44 +00:00
committed by GitHub
@@ -4,22 +4,19 @@
fetchFromGitHub,
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "asteval";
version = "1.0.6";
version = "1.0.7";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "lmfit";
repo = "asteval";
tag = version;
hash = "sha256-DzLVe8TlWAPQXzai9CJlDAow6UTSmkA/DW3fT30YfZY=";
hash = "sha256-c+gVT947IpJC2gn1SWVth0ScOBh34m89dpgR5AikOHk=";
};
build-system = [ setuptools-scm ];
@@ -39,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "AST evaluator of Python expression using ast module";
homepage = "https://github.com/lmfit/asteval";
changelog = "https://github.com/lmfit/asteval/releases/tag/${version}";
changelog = "https://github.com/lmfit/asteval/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};