diff --git a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix index 60dc275ef585..2c26d535c936 100644 --- a/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix +++ b/pkgs/servers/home-assistant/custom-components/homematicip_local/package.nix @@ -7,20 +7,22 @@ aiohomematic-config, aiohomematic-test-support, home-assistant, + openccu-data, pytest-homeassistant-custom-component, + pytest-xdist, pytestCheckHook, }: buildHomeAssistantComponent rec { owner = "SukramJ"; domain = "homematicip_local"; - version = "2.6.0"; + version = "2.7.3"; src = fetchFromGitHub { owner = "SukramJ"; repo = "custom_homematic"; tag = version; - hash = "sha256-u3REMGuaQ+wQgDgiTvplBRMbzZJDUfcbyJm9tYOuYIw="; + hash = "sha256-9dXvIxMMdHTOi9JbRsHbySqRUYq6dN+MzrOocq9cpdA="; }; postPatch = '' @@ -33,20 +35,25 @@ buildHomeAssistantComponent rec { dependencies = [ aiohomematic aiohomematic-config + openccu-data ]; nativeCheckInputs = [ aiohomematic-test-support async-upnp-client pytest-homeassistant-custom-component + pytest-xdist pytestCheckHook ]; + disabledTestPaths = [ + # tries to write to the Nix store + "tests/test_blueprints.py" + ]; + disabledTests = [ # custom_components.homematicip_local.support.InvalidConfig: C "test_async_validate_config_and_get_system_information" - # Failed: Lingering timer after test - "test_reauth_flow_success" ]; meta = {