From c81ebe69efa15183ae115e60c1c7b698cecdeec6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 19 Apr 2025 22:33:06 -0700 Subject: [PATCH] python313Packages.bellows: 0.44.0 -> 0.44.1 Diff: https://github.com/zigpy/bellows/compare/refs/tags/0.44.0...0.44.1 Changelog: https://github.com/zigpy/bellows/releases/tag/0.44.1 --- pkgs/development/python-modules/bellows/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/bellows/default.nix b/pkgs/development/python-modules/bellows/default.nix index 301f22512cf8..9bbbc35c7fcc 100644 --- a/pkgs/development/python-modules/bellows/default.nix +++ b/pkgs/development/python-modules/bellows/default.nix @@ -5,8 +5,6 @@ click, click-log, fetchFromGitHub, - pure-pcapy3, - pyserial-asyncio, pytest-asyncio, pytest-timeout, pytestCheckHook, @@ -18,16 +16,14 @@ buildPythonPackage rec { pname = "bellows"; - version = "0.44.0"; + version = "0.44.1"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "zigpy"; repo = "bellows"; tag = version; - hash = "sha256-9CuZGorTqay09ZHrUDoorYew8vvDV6pyxMuik7/QKJ4="; + hash = "sha256-LxwKS4jh/ehYGxhU4lpmzXBWGacLtjq6c/lhBybLaRE="; }; postPatch = '' @@ -41,8 +37,6 @@ buildPythonPackage rec { dependencies = [ click click-log - pure-pcapy3 - pyserial-asyncio voluptuous zigpy ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ]; @@ -58,7 +52,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module to implement EZSP for EmberZNet devices"; homepage = "https://github.com/zigpy/bellows"; - changelog = "https://github.com/zigpy/bellows/releases/tag/${version}"; + changelog = "https://github.com/zigpy/bellows/releases/tag/${src.tag}"; license = licenses.gpl3Plus; maintainers = with maintainers; [ mvnetbiz ]; mainProgram = "bellows";