From 870b2288fb40ca42572bafeeda44a25f83300507 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 5 Feb 2025 17:34:40 +0100 Subject: [PATCH] python313Packages.bleak-retry-connector: 3.7.0 -> 3.8.1 https://github.com/bluetooth-devices/bleak-retry-connector/blob/v3.8.1/CHANGELOG.md --- .../python-modules/bleak-retry-connector/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/bleak-retry-connector/default.nix b/pkgs/development/python-modules/bleak-retry-connector/default.nix index ba2b00265e25..aecce4c13171 100644 --- a/pkgs/development/python-modules/bleak-retry-connector/default.nix +++ b/pkgs/development/python-modules/bleak-retry-connector/default.nix @@ -10,11 +10,12 @@ pytestCheckHook, pythonOlder, pytest-asyncio, + pytest-cov-stub, }: buildPythonPackage rec { pname = "bleak-retry-connector"; - version = "3.7.0"; + version = "3.8.1"; pyproject = true; disabled = pythonOlder "3.7"; @@ -23,14 +24,9 @@ buildPythonPackage rec { owner = "Bluetooth-Devices"; repo = "bleak-retry-connector"; tag = "v${version}"; - hash = "sha256-+qY8BWi7zznaJBEMXfbDWjNvHEwpKq1h0XBHFum1+4M="; + hash = "sha256-Vkmn+CKQm+i+MRx12U6AmDGUyhtagoXbpeC/uou311o="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace-fail " --cov=bleak_retry_connector --cov-report=term-missing:skip-covered" "" - ''; - build-system = [ poetry-core ]; dependencies = [ @@ -42,6 +38,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio + pytest-cov-stub pytestCheckHook ];