From 622228c457cd3e5c2d44b535ba95409d5c6bb422 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 16 Nov 2025 00:43:02 +0100 Subject: [PATCH] python313Packages.velbus-aio: 2025.8.0 -> 2025.11.0 Changelog: https://github.com/Cereal2nd/velbus-aio/releases/tag/2025.11.0 --- .../development/python-modules/velbus-aio/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/velbus-aio/default.nix b/pkgs/development/python-modules/velbus-aio/default.nix index 1d5bbaf9f39c..0c89d22794b4 100644 --- a/pkgs/development/python-modules/velbus-aio/default.nix +++ b/pkgs/development/python-modules/velbus-aio/default.nix @@ -2,9 +2,10 @@ lib, aiofile, backoff, + beautifulsoup4, buildPythonPackage, fetchFromGitHub, - pythonOlder, + lxml, pyserial, pyserial-asyncio-fast, pytest-asyncio, @@ -15,16 +16,14 @@ buildPythonPackage rec { pname = "velbus-aio"; - version = "2025.8.0"; + version = "2025.11.0"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "Cereal2nd"; repo = "velbus-aio"; tag = version; - hash = "sha256-Z8aQ7UciafWjK3bND846BgolWtOakJv63qzc1eB94dc="; + hash = "sha256-/sceaihRNMebcdQzNuZdH9uPibaG7UjvSP50kJ85L+Q="; fetchSubmodules = true; }; @@ -33,6 +32,8 @@ buildPythonPackage rec { dependencies = [ aiofile backoff + beautifulsoup4 + lxml pyserial pyserial-asyncio-fast ];