From 95ae2ac1388dfc7993dd5710d6f9264fab34fed0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 8 Nov 2025 22:23:42 +0100 Subject: [PATCH] python313Packages.asteval: modernize --- pkgs/development/python-modules/asteval/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/asteval/default.nix b/pkgs/development/python-modules/asteval/default.nix index 68aec3379bf4..20949f3e581d 100644 --- a/pkgs/development/python-modules/asteval/default.nix +++ b/pkgs/development/python-modules/asteval/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, pytest-cov-stub, pytestCheckHook, - pythonOlder, setuptools-scm, }: @@ -13,8 +12,6 @@ buildPythonPackage rec { version = "1.0.7"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "lmfit"; repo = "asteval"; @@ -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 ]; };