From e771754e2a31b7e2c0240ba2807c3eb7a5d34352 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 6 Jan 2025 22:59:25 +0100 Subject: [PATCH] python312Packages.habluetooth: 3.6.0 -> 3.7.0 Diff: https://github.com/Bluetooth-Devices/habluetooth/compare/refs/tags/v3.6.0...v3.7.0 Changelog: https://github.com/Bluetooth-Devices/habluetooth/blob/v3.7.0/CHANGELOG.md --- pkgs/development/python-modules/habluetooth/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/habluetooth/default.nix b/pkgs/development/python-modules/habluetooth/default.nix index 50e6aef3fb944..6586cb0527229 100644 --- a/pkgs/development/python-modules/habluetooth/default.nix +++ b/pkgs/development/python-modules/habluetooth/default.nix @@ -1,8 +1,8 @@ { lib, async-interrupt, - bleak, bleak-retry-connector, + bleak, bluetooth-adapters, bluetooth-auto-recovery, bluetooth-data-tools, @@ -11,6 +11,7 @@ fetchFromGitHub, poetry-core, pytest-asyncio, + pytest-codspeed, pytest-cov-stub, pytestCheckHook, pythonOlder, @@ -19,7 +20,7 @@ buildPythonPackage rec { pname = "habluetooth"; - version = "3.6.0"; + version = "3.7.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -28,7 +29,7 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "habluetooth"; tag = "v${version}"; - hash = "sha256-ypE/PvJV29+P389wLKZUErqLRvy935dAZYeap7n1z4M="; + hash = "sha256-wOWQaM1hfWaqLFIzwB7O1yOS/CJPvZ+aGbKzvAE2DAE="; }; build-system = [ @@ -48,6 +49,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio + pytest-codspeed pytest-cov-stub pytestCheckHook ];