From 866089f9b6fb3304465eb59ae1bb6e3586740cac Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 28 Feb 2025 00:21:15 +0100 Subject: [PATCH] python312Packages.nicegui-highcharts: 2.0.2 -> 2.1.0 Diff: https://github.com/zauberzeug/nicegui-highcharts/compare/refs/tags/v2.0.2...v2.1.0 --- .../python-modules/nicegui-highcharts/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/nicegui-highcharts/default.nix b/pkgs/development/python-modules/nicegui-highcharts/default.nix index fb575e9d65cc..7dfd05482796 100644 --- a/pkgs/development/python-modules/nicegui-highcharts/default.nix +++ b/pkgs/development/python-modules/nicegui-highcharts/default.nix @@ -2,30 +2,31 @@ lib, buildPythonPackage, fetchFromGitHub, + + # build-system poetry-core, setuptools, + + # dependencies docutils, nicegui, - pythonOlder, }: buildPythonPackage rec { pname = "nicegui-highcharts"; - version = "2.0.2"; + version = "2.1.0"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "zauberzeug"; repo = "nicegui-highcharts"; tag = "v${version}"; - hash = "sha256-r4X4faU7Nlq/FDbIYbTpvnC1w14XskpsNGtkEXtGrFo="; + hash = "sha256-9COui3gqLZqJSeZyzazxQcOc2oM9Li+dLBoy5VcEKBw="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail '"setuptools>=30.3.0,<50",' "" + --replace-fail "setuptools>=30.3.0,<50" "setuptools" ''; pythonRelaxDeps = [ @@ -51,6 +52,7 @@ buildPythonPackage rec { meta = { description = "NiceGUI with support for Highcharts"; homepage = "https://github.com/zauberzeug/nicegui-highcharts"; + changelog = "https://github.com/zauberzeug/nicegui-highcharts/releases/tag/v${version}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; };