python3Packages.smpclient: remove upstreamed patch (#499154)

This commit is contained in:
dotlambda
2026-03-12 06:08:55 +00:00
committed by GitHub
2 changed files with 0 additions and 20 deletions
@@ -1,18 +0,0 @@
diff --git a/tests/test_smp_ble_transport.py b/tests/test_smp_ble_transport.py
index 95a7ade..f469438 100644
--- a/tests/test_smp_ble_transport.py
+++ b/tests/test_smp_ble_transport.py
@@ -73,11 +73,11 @@ def test_SMP_gatt_consts() -> None:
@patch(
"smpclient.transport.ble.BleakScanner.find_device_by_address",
- return_value=BLEDevice("address", "name", None, -60),
+ return_value=BLEDevice("address", "name", None),
)
@patch(
"smpclient.transport.ble.BleakScanner.find_device_by_name",
- return_value=BLEDevice("address", "name", None, -60),
+ return_value=BLEDevice("address", "name", None),
)
@patch("smpclient.transport.ble.BleakClient", new=MockBleakClient)
@pytest.mark.asyncio
@@ -48,8 +48,6 @@ buildPythonPackage rec {
pytestCheckHook
];
patches = [ ./bleak-compat.patch ];
pythonImportsCheck = [ "smpclient" ];
meta = {