From cc7a53d6ff010ef452fc3e933f9ae6acc27f67f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 24 Sep 2025 11:20:48 -0700 Subject: [PATCH] python3Packages.eq3btsmart: 2.1.1 -> 2.3.0 Diff: https://github.com/EuleMitKeule/eq3btsmart/compare/2.1.1...2.3.0 Changelog: https://github.com/EuleMitKeule/eq3btsmart/releases/tag/2.2.0 https://github.com/EuleMitKeule/eq3btsmart/releases/tag/2.3.0 --- pkgs/development/python-modules/eq3btsmart/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/eq3btsmart/default.nix b/pkgs/development/python-modules/eq3btsmart/default.nix index 3f286274b64b..f8e0c902c4da 100644 --- a/pkgs/development/python-modules/eq3btsmart/default.nix +++ b/pkgs/development/python-modules/eq3btsmart/default.nix @@ -4,6 +4,7 @@ fetchFromGitHub, setuptools, bleak, + bleak-retry-connector, construct-typing, pytest-asyncio, pytestCheckHook, @@ -11,20 +12,21 @@ buildPythonPackage rec { pname = "eq3btsmart"; - version = "2.1.1"; + version = "2.3.0"; pyproject = true; src = fetchFromGitHub { owner = "EuleMitKeule"; repo = "eq3btsmart"; tag = version; - hash = "sha256-/Z/lSZXJ+c+G5iDF/BGacSpxrgJK4NLU7ShIAV4ipLc="; + hash = "sha256-9x2uQUpLl0bSOiEBTvt6IPZCJ3Oj+U4knlvrTXPGs3I="; }; build-system = [ setuptools ]; dependencies = [ bleak + bleak-retry-connector construct-typing ];