From ea6b7df151141db00a6cf94578955f71eb73da8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 12 Nov 2025 10:53:31 -0800 Subject: [PATCH] python3Packages.bleak-retry-connector: 4.4.3 -> 4.4.4 Diff: https://github.com/Bluetooth-Devices/bleak-retry-connector/compare/v4.4.3...v4.4.4 Changelog: https://github.com/Bluetooth-Devices/bleak-retry-connector/releases/tag/v4.4.4 --- .../bleak-retry-connector/default.nix | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/bleak-retry-connector/default.nix b/pkgs/development/python-modules/bleak-retry-connector/default.nix index 5d3578df5ef2..076d6bbd8ba2 100644 --- a/pkgs/development/python-modules/bleak-retry-connector/default.nix +++ b/pkgs/development/python-modules/bleak-retry-connector/default.nix @@ -15,28 +15,25 @@ buildPythonPackage rec { pname = "bleak-retry-connector"; - version = "4.4.3"; + version = "4.4.4"; pyproject = true; src = fetchFromGitHub { owner = "Bluetooth-Devices"; repo = "bleak-retry-connector"; tag = "v${version}"; - hash = "sha256-/IJBAeb/PdJt0IbLm3RnaHn4o8o1DXN8jGiQtzp7wLg="; + hash = "sha256-T7mJUj/AF+ZuTiGGFHUT7Ftnz+A0O5nGjj4a75obsuc="; }; build-system = [ poetry-core ]; - dependencies = - lib.optionals (pythonOlder "3.14") [ - bleak - ] - ++ lib.optionals (stdenv.hostPlatform.isLinux && pythonOlder "3.14") [ - bluetooth-adapters - ] - ++ lib.optionals stdenv.hostPlatform.isLinux [ - dbus-fast - ]; + dependencies = [ + bleak + ] + ++ lib.optionals stdenv.hostPlatform.isLinux [ + bluetooth-adapters + dbus-fast + ]; nativeCheckInputs = [ pytest-asyncio @@ -49,7 +46,7 @@ buildPythonPackage rec { meta = with lib; { description = "Connector for Bleak Clients that handles transient connection failures"; homepage = "https://github.com/bluetooth-devices/bleak-retry-connector"; - changelog = "https://github.com/bluetooth-devices/bleak-retry-connector/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/Bluetooth-Devices/bleak-retry-connector/releases/tag/${src.tag}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };