From cbba0059dd1984e88f52c0b4913b03182ccab6dd Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 17 Dec 2025 10:35:50 +0100 Subject: [PATCH] python313Packages.pyecharts: modernize --- pkgs/development/python-modules/pyecharts/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyecharts/default.nix b/pkgs/development/python-modules/pyecharts/default.nix index b3d04bbfc070..d2b09be15f82 100644 --- a/pkgs/development/python-modules/pyecharts/default.nix +++ b/pkgs/development/python-modules/pyecharts/default.nix @@ -8,7 +8,6 @@ pillow, prettytable, pytestCheckHook, - pythonOlder, requests, setuptools, simplejson, @@ -19,8 +18,6 @@ buildPythonPackage rec { version = "2.0.9"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "pyecharts"; repo = "pyecharts"; @@ -60,7 +57,7 @@ buildPythonPackage rec { meta = { description = "Python Echarts Plotting Library"; homepage = "https://github.com/pyecharts/pyecharts"; - changelog = "https://github.com/pyecharts/pyecharts/releases/tag/v${version}"; + changelog = "https://github.com/pyecharts/pyecharts/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; };