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" ];