From 36787bce910be0624651cde6e09240ece443b23c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 7 Jul 2025 08:30:57 +0200 Subject: [PATCH] python312Packages.nicegui: 2.15.0 -> 2.20.0 Changelog: https://github.com/zauberzeug/nicegui/releases/tag/v2.20.0 --- .../python-modules/nicegui/default.nix | 46 ++++++++----------- 1 file changed, 20 insertions(+), 26 deletions(-) diff --git a/pkgs/development/python-modules/nicegui/default.nix b/pkgs/development/python-modules/nicegui/default.nix index ec7444a95308..9b5605bd6ed0 100644 --- a/pkgs/development/python-modules/nicegui/default.nix +++ b/pkgs/development/python-modules/nicegui/default.nix @@ -1,65 +1,59 @@ { lib, - buildPythonPackage, - fetchFromGitHub, - - # build-system - poetry-core, - setuptools, - - # dependencies aiofiles, aiohttp, + buildPythonPackage, certifi, docutils, fastapi, + fetchFromGitHub, httpx, ifaddr, itsdangerous, jinja2, + libsass, markdown2, + matplotlib, orjson, + pandas, + pkgs, + plotly, + poetry-core, + polars, + pyecharts, pygments, + pytest-asyncio, + pytest-selenium, + pytestCheckHook, python-multipart, python-socketio, + pywebview, + redis, requests, + setuptools, typing-extensions, urllib3, uvicorn, vbuild, watchfiles, - - # optional-dependencies - matplotlib, - pywebview, - plotly, - libsass, - redis, - - # tests - pandas, - pkgs, - polars, - pyecharts, - pytest-asyncio, - pytest-selenium, - pytestCheckHook, webdriver-manager, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "nicegui"; - version = "2.15.0"; + version = "2.20.0"; pyproject = true; src = fetchFromGitHub { owner = "zauberzeug"; repo = "nicegui"; tag = "v${version}"; - hash = "sha256-pwR+9QBCIMZXFK9n8GRESl9UFsh7zcgOxTngdgdyMuc="; + hash = "sha256-XCOFRfG+EkgSKz5Z7Ds9F2Vwl1+7GH7ojxuE6ruvO3Y="; }; + pythonRelaxDeps = [ "requests" ]; + build-system = [ poetry-core setuptools