python313Packages.bleak-retry-connector: 3.7.0 -> 3.8.1

https://github.com/bluetooth-devices/bleak-retry-connector/blob/v3.8.1/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2025-02-06 18:55:11 +01:00
parent d71d813b4e
commit 870b2288fb
@@ -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
];