From 9da0d5d9216f6d7adfa97bdcb75b5c8e021ced5f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 6 Aug 2025 21:42:57 +0200 Subject: [PATCH] python3Packages.zha-quirks: 0.0.139 -> 0.0.142 https://github.com/zigpy/zha-device-handlers/releases/tag/0.0.142 --- pkgs/development/python-modules/zha-quirks/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index ec8db53b39a5..e33195d711b2 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -7,12 +7,13 @@ pytestCheckHook, pythonOlder, setuptools, + time-machine, zigpy, }: buildPythonPackage rec { pname = "zha-quirks"; - version = "0.0.139"; + version = "0.0.142"; pyproject = true; disabled = pythonOlder "3.12"; @@ -21,7 +22,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zha-device-handlers"; tag = version; - hash = "sha256-16gv2t1hudIULybmAXK+sMl9MsFATHMGQeZWhmVhrkk="; + hash = "sha256-D1FIkyVSa4j6p4PHkjCAU08zpZjjXPGWoL5lKlWUHuU="; }; postPatch = '' @@ -40,6 +41,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio pytestCheckHook + time-machine ]; disabledTests = [ @@ -47,6 +49,9 @@ buildPythonPackage rec { "test_mfg_cluster_events" "test_co2_sensor" "test_smart_air_sensor" + # AssertionError: expected call not found + "test_moes" + "test_tuya_mcu_set_time" ]; pythonImportsCheck = [ "zhaquirks" ];