From 436aff40827c2105ec43c195a39d03a35d6ec891 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 21:28:13 +0200 Subject: [PATCH 01/16] python312Packages.zigpy: 0.65.2 -> 0.65.3 https://github.com/zigpy/zigpy/releases/tag/0.65.3 --- pkgs/development/python-modules/zigpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zigpy/default.nix b/pkgs/development/python-modules/zigpy/default.nix index c6df4fb89f42..c86a79435d28 100644 --- a/pkgs/development/python-modules/zigpy/default.nix +++ b/pkgs/development/python-modules/zigpy/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { pname = "zigpy"; - version = "0.65.2"; + version = "0.65.3"; pyproject = true; disabled = pythonOlder "3.8"; @@ -36,7 +36,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zigpy"; rev = "refs/tags/${version}"; - hash = "sha256-rNqo4NtIdg9MoOKde26/RUcfX/VYiVkNj97v/RJcB4E="; + hash = "sha256-zE8Hqha1yv7OsaXYrKzf3o2JLO/RcDSAxixWoMj2T3M="; }; postPatch = '' From ab3fd33275eb4e4500417e0ef01a51e8ebcaf531 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 21:28:51 +0200 Subject: [PATCH 02/16] python312Packages.bellows: 0.40.2 -> 0.40.3 https://github.com/zigpy/bellows/releases/tag/0.40.3 --- pkgs/development/python-modules/bellows/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bellows/default.nix b/pkgs/development/python-modules/bellows/default.nix index 444a1ae8eb9e..d70fc9204241 100644 --- a/pkgs/development/python-modules/bellows/default.nix +++ b/pkgs/development/python-modules/bellows/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "bellows"; - version = "0.40.2"; + version = "0.40.3"; pyproject = true; disabled = pythonOlder "3.8"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "bellows"; rev = "refs/tags/${version}"; - hash = "sha256-pcyvJsAFJCm6mpGvfWp6WUzdn2Z7Fr2G6B5uEXZDhIg="; + hash = "sha256-JGc5jDvEZtYyYAExRnN1K5hDY3ioS3+mm7jMrR0RyXk="; }; postPatch = '' From 6b652446fe79518133b764c5d25192d0ab95a431 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 21:34:35 +0200 Subject: [PATCH 03/16] python312Packages.zigpy-xbee: 0.20.1 -> 0.20.2 https://github.com/zigpy/zigpy-xbee/releases/tag/0.20.2 --- pkgs/development/python-modules/zigpy-xbee/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-xbee/default.nix b/pkgs/development/python-modules/zigpy-xbee/default.nix index 0c627694f7d3..0a3c11635f48 100644 --- a/pkgs/development/python-modules/zigpy-xbee/default.nix +++ b/pkgs/development/python-modules/zigpy-xbee/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "zigpy-xbee"; - version = "0.20.1"; + version = "0.20.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zigpy-xbee"; rev = "refs/tags/${version}"; - hash = "sha256-H0rs4EOzz2Nx5YuwqTZp2FGF1z2phBgSIyraKHHx4RA="; + hash = "sha256-d5TOX2sKA2E6b6KHvAdhxEknD6fOF4qRjCMpBKEsicA="; }; postPatch = '' From 00e059756651de766aa67556f1600c2dec698ce9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 21:39:25 +0200 Subject: [PATCH 04/16] python312Packages.zigpy-deconz: fix tests with zigpy 0.65.3 --- pkgs/development/python-modules/zigpy-deconz/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/python-modules/zigpy-deconz/default.nix b/pkgs/development/python-modules/zigpy-deconz/default.nix index 83fae1faddba..04b8efb6f27f 100644 --- a/pkgs/development/python-modules/zigpy-deconz/default.nix +++ b/pkgs/development/python-modules/zigpy-deconz/default.nix @@ -2,6 +2,7 @@ lib, buildPythonPackage, fetchFromGitHub, + fetchpatch2, pyserial, pyserial-asyncio, pytest-asyncio, @@ -25,6 +26,13 @@ buildPythonPackage rec { hash = "sha256-z/QulOkvkV/1Z+M7EfzdfGvrrtkapYcvfz+3AijR46k="; }; + patches = [ + (fetchpatch2 { + url = "https://github.com/zigpy/zigpy-deconz/commit/86fdcd6be824f12ce3bf88b40217a6224cbf5a89.patch"; + hash = "sha256-iqpTSJPBMSBZXg5EVXXupxIFRsGCNuxU/oNHZ2VT0Jc="; + }) + ]; + postPatch = '' substituteInPlace pyproject.toml \ --replace ', "setuptools-git-versioning<2"' "" \ From 247b77874e27c111befb98111ffc7f41b87a9730 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 22:09:45 +0200 Subject: [PATCH 05/16] python312Packages.zha-quirks: fix test with zigpy 0.65.3 --- .../python-modules/zha-quirks/default.nix | 5 +++++ .../zha-quirks/zigpy-0.65.3-compat.patch | 12 ++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 pkgs/development/python-modules/zha-quirks/zigpy-0.65.3-compat.patch diff --git a/pkgs/development/python-modules/zha-quirks/default.nix b/pkgs/development/python-modules/zha-quirks/default.nix index 6d96954257ce..17d50b428b7a 100644 --- a/pkgs/development/python-modules/zha-quirks/default.nix +++ b/pkgs/development/python-modules/zha-quirks/default.nix @@ -24,6 +24,11 @@ buildPythonPackage rec { hash = "sha256-LudwIENP1KCX7+HwyklCUdAu5mRLDcnMEZBzbRH2FM0="; }; + patches = [ + # https://github.com/zigpy/zha-device-handlers/pull/3296 + ./zigpy-0.65.3-compat.patch + ]; + postPatch = '' substituteInPlace pyproject.toml \ --replace-fail ', "setuptools-git-versioning<2"' "" \ diff --git a/pkgs/development/python-modules/zha-quirks/zigpy-0.65.3-compat.patch b/pkgs/development/python-modules/zha-quirks/zigpy-0.65.3-compat.patch new file mode 100644 index 000000000000..0c1f573ae433 --- /dev/null +++ b/pkgs/development/python-modules/zha-quirks/zigpy-0.65.3-compat.patch @@ -0,0 +1,12 @@ +diff --git a/tests/conftest.py b/tests/conftest.py +index e64beb2..c1f0785 100644 +--- a/tests/conftest.py ++++ b/tests/conftest.py +@@ -88,7 +88,6 @@ class MockApp(zigpy.application.ControllerApplication): + def app_controller_mock(): + """App controller mock.""" + config = {"device": {"path": "/dev/ttyUSB0"}, "database": None} +- config = MockApp.SCHEMA(config) + app = MockApp(config) + return app + From c98b7e4011447139012ac285fa047712d4e9e1ec Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 22:46:03 +0200 Subject: [PATCH 06/16] python312Packages.zigpy-znp: disable tests They are not compatible with zigpy 0.65.3. --- .../python-modules/zigpy-znp/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix index c4953c39ab0f..98a7661f0483 100644 --- a/pkgs/development/python-modules/zigpy-znp/default.nix +++ b/pkgs/development/python-modules/zigpy-znp/default.nix @@ -31,16 +31,16 @@ buildPythonPackage rec { hash = "sha256-5DuqM7MgntV/3WquR+0Cr/vIwYL35ZVpGlNZPj92jJ4="; }; - nativeBuildInputs = [ setuptools ]; - postPatch = '' substituteInPlace pyproject.toml \ - --replace "timeout = 20" "timeout = 300" \ - --replace ', "setuptools-git-versioning<2"' "" \ - --replace 'dynamic = ["version"]' 'version = "${version}"' + --replace-fail "timeout = 20" "timeout = 300" \ + --replace-fail ', "setuptools-git-versioning<2"' "" \ + --replace-fail 'dynamic = ["version"]' 'version = "${version}"' ''; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ async-timeout coloredlogs jsonschema @@ -48,6 +48,8 @@ buildPythonPackage rec { zigpy ]; + doCheck = false; # tests are not compatible with zigpy 0.65.3 + nativeCheckInputs = [ pytest-asyncio pytest-mock From 9c54afb733a421dba2bda7cf9cb075eadbb86e21 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 22:49:53 +0200 Subject: [PATCH 07/16] python312Packages.zha: unrelax various critical deps These need to match the pinned version, or functionality will break. --- pkgs/development/python-modules/zha/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/development/python-modules/zha/default.nix b/pkgs/development/python-modules/zha/default.nix index c909669a329f..c186ed1bd3bf 100644 --- a/pkgs/development/python-modules/zha/default.nix +++ b/pkgs/development/python-modules/zha/default.nix @@ -45,14 +45,9 @@ buildPythonPackage rec { ''; pythonRelaxDeps = [ - "bellows" "pyserial-asyncio-fast" - "universal-silabs-flasher" - "zha-quirks" - "zigpy" ]; - build-system = [ setuptools wheel From 89b36233a6d597106bb074aa3fd645cced32b3b8 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:14:17 +0200 Subject: [PATCH 08/16] python312Packages.zha: 0.0.28 -> 0.0.30 https://github.com/zigpy/zha/releases/tag/0.0.30 --- pkgs/development/python-modules/zha/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zha/default.nix b/pkgs/development/python-modules/zha/default.nix index c186ed1bd3bf..c83e3fb93201 100644 --- a/pkgs/development/python-modules/zha/default.nix +++ b/pkgs/development/python-modules/zha/default.nix @@ -4,6 +4,7 @@ bellows, buildPythonPackage, fetchFromGitHub, + freezegun, pyserial, pyserial-asyncio, pyserial-asyncio-fast, @@ -26,7 +27,7 @@ buildPythonPackage rec { pname = "zha"; - version = "0.0.28"; + version = "0.0.30"; pyproject = true; disabled = pythonOlder "3.12"; @@ -35,7 +36,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zha"; rev = "refs/tags/${version}"; - hash = "sha256-qsX62k/KeQ2ZTUHAv2ieZxOFh9dNFnLx0ZZOZCvI3ZE="; + hash = "sha256-4Fpe1us/GS2QVJbbnMcI7bziyW5P2kuJ6+p5L9N7lMY="; }; postPatch = '' @@ -70,6 +71,7 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ + freezegun pytest-asyncio pytest-timeout pytest-xdist From e518b7e067f729569d1687a34819cb92bebd39c1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:15:26 +0200 Subject: [PATCH 09/16] python312Packages.pydaikin: 2.13.1 -> 2.13.2 https://github.com/fredrike/pydaikin/releases/tag/v2.13.2 --- pkgs/development/python-modules/pydaikin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pydaikin/default.nix b/pkgs/development/python-modules/pydaikin/default.nix index 407bc398f9b6..e19269637f97 100644 --- a/pkgs/development/python-modules/pydaikin/default.nix +++ b/pkgs/development/python-modules/pydaikin/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "pydaikin"; - version = "2.13.1"; + version = "2.13.2"; pyproject = true; disabled = pythonOlder "3.11"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "fredrike"; repo = "pydaikin"; rev = "refs/tags/v${version}"; - hash = "sha256-UOHNMYcgf8NYwbmr+YcCKZvcrXnz38VKxLAYnpoKiVo="; + hash = "sha256-eq6QE5yYPb9y7bNJwk3sLQp7Pw0PtWn2T/6J+ICfPsY="; }; build-system = [ setuptools ]; From cfdd1e833bd2b74d5e279552eaa68c222df86ae1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:16:17 +0200 Subject: [PATCH 10/16] python312Packages.python-homewizard-energy: 6.1.1 -> 6.2.0 https://github.com/homewizard/python-homewizard-energy/releases/tag/v6.2.0 --- .../python-modules/python-homewizard-energy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-homewizard-energy/default.nix b/pkgs/development/python-modules/python-homewizard-energy/default.nix index 885f58a59877..ef4d79dfda88 100644 --- a/pkgs/development/python-modules/python-homewizard-energy/default.nix +++ b/pkgs/development/python-modules/python-homewizard-energy/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "python-homewizard-energy"; - version = "6.1.1"; + version = "6.2.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -23,7 +23,7 @@ buildPythonPackage rec { owner = "DCSBL"; repo = "python-homewizard-energy"; rev = "refs/tags/v${version}"; - hash = "sha256-DIDHUyos2XScoYZfI3o33UN2R0J/Xc2/JQvtzCXZTts="; + hash = "sha256-CSX2iLjOJRW2dxcE9JhK2A8QlvVUxYE2C6MZFPg370c="; }; postPatch = '' From 20d0ebedcedc0024344b1249483a4c4a98089120 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:16:45 +0200 Subject: [PATCH 11/16] python312Packages.airgradient: 0.7.1 -> 0.8.0 https://github.com/airgradienthq/python-airgradient/releases/tag/v0.8.0 --- pkgs/development/python-modules/airgradient/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/airgradient/default.nix b/pkgs/development/python-modules/airgradient/default.nix index 02a642b98bee..c735c1c7cd84 100644 --- a/pkgs/development/python-modules/airgradient/default.nix +++ b/pkgs/development/python-modules/airgradient/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "airgradient"; - version = "0.7.1"; + version = "0.8.0"; pyproject = true; disabled = pythonOlder "3.11"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "airgradienthq"; repo = "python-airgradient"; rev = "refs/tags/v${version}"; - hash = "sha256-EFt2V+r7RLiFMihFCCBU9iEPcbSybK6gP+uxed+mIeo="; + hash = "sha256-NONOfM61oCtiNgmKCXvkEvCzSjumwjaeuzg9l/7hX8M="; }; postPatch = '' From fe2b321deb9eeca316a572c31e711c45890c800c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:56:01 +0200 Subject: [PATCH 12/16] python312Packages.airgradient: use pytest-cov-stub --- pkgs/development/python-modules/airgradient/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/airgradient/default.nix b/pkgs/development/python-modules/airgradient/default.nix index c735c1c7cd84..2eed753ffa90 100644 --- a/pkgs/development/python-modules/airgradient/default.nix +++ b/pkgs/development/python-modules/airgradient/default.nix @@ -8,6 +8,7 @@ orjson, poetry-core, pytest-asyncio, + pytest-cov-stub, pytestCheckHook, pythonOlder, syrupy, @@ -28,11 +29,6 @@ buildPythonPackage rec { hash = "sha256-NONOfM61oCtiNgmKCXvkEvCzSjumwjaeuzg9l/7hX8M="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace-fail "--cov" "" - ''; - build-system = [ poetry-core ]; dependencies = [ @@ -45,6 +41,7 @@ buildPythonPackage rec { nativeCheckInputs = [ aioresponses pytest-asyncio + pytest-cov-stub pytestCheckHook syrupy ]; From 579125c431448b7b91bc73967ff1c0fec7481f29 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:17:51 +0200 Subject: [PATCH 13/16] python312Packages.dio-chacon-wifi-api: 1.1.0 -> 1.2.0 https://github.com/cnico/dio-chacon-wifi-api/compare/v1.1.0...v1.2.0 --- .../python-modules/dio-chacon-wifi-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix b/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix index 3544725132b9..bc9bcd1f669b 100644 --- a/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix +++ b/pkgs/development/python-modules/dio-chacon-wifi-api/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "dio-chacon-wifi-api"; - version = "1.1.0"; + version = "1.2.0"; pyproject = true; src = fetchFromGitHub { owner = "cnico"; repo = "dio-chacon-wifi-api"; rev = "v${version}"; - hash = "sha256-TeunMvkiQw4TzLb2dsAHAg49nUzD3DGiO0DuXKGcICU="; + hash = "sha256-iIDBHyZuI9qNLRmTY0nXOl5wplFKDoiKkqQb1m4uIxs="; }; build-system = [ poetry-core ]; From 73ec744560894022fb2d3f9f2fa50125d3ca4e3f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 20:19:58 +0200 Subject: [PATCH 14/16] home-assistant: 2024.8.0 -> 2024.8.1 https://github.com/home-assistant/core/releases/tag/2024.8.1 --- .../home-assistant/component-packages.nix | 4 ++-- pkgs/servers/home-assistant/default.nix | 16 +++------------- pkgs/servers/home-assistant/frontend.nix | 4 ++-- 3 files changed, 7 insertions(+), 17 deletions(-) diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index c049b0f345df..69be32c12051 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -2,7 +2,7 @@ # Do not edit! { - version = "2024.8.0"; + version = "2024.8.1"; components = { "3_day_blinds" = ps: with ps; [ ]; @@ -645,7 +645,7 @@ "coautilities" = ps: with ps; [ ]; "coinbase" = ps: with ps; [ - ]; # missing inputs: coinbase + ]; # missing inputs: coinbase coinbase-advanced-py "color_extractor" = ps: with ps; [ colorthief ]; diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index 7de6e78eebd1..3a67ab47abd2 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -311,16 +311,6 @@ let }; }); - pyopenweathermap = super.pyopenweathermap.overridePythonAttrs (oldAttrs: rec { - version = "0.0.10"; - src = fetchFromGitHub { - owner = "freekode"; - repo = "pyopenweathermap"; - rev = "refs/tags/v${version}"; - hash = "sha256-wEcE4IYVvxEwW5Hhz+DqDIqbjd5/O1hEr7dGgiuMI00="; - }; - }); - pysnooz = super.pysnooz.overridePythonAttrs (oldAttrs: rec { version = "0.8.6"; src = fetchFromGitHub { @@ -481,7 +471,7 @@ let extraBuildInputs = extraPackages python.pkgs; # Don't forget to run update-component-packages.py after updating - hassVersion = "2024.8.0"; + hassVersion = "2024.8.1"; in python.pkgs.buildPythonApplication rec { pname = "homeassistant"; @@ -499,13 +489,13 @@ in python.pkgs.buildPythonApplication rec { owner = "home-assistant"; repo = "core"; rev = "refs/tags/${version}"; - hash = "sha256-WGbT53bmyV1d/6GKlv5+bxLmGRqsAHEKbs2halMkPB4="; + hash = "sha256-sbXfvlQJRRVkvSRJ8v/Su8us9WnoJUF4odAJrewryco="; }; # Secondary source is pypi sdist for translations sdist = fetchPypi { inherit pname version; - hash = "sha256-RfTkF8HO5bZCupo5vBLbSG2shr+b31GfDN+iJpH5sc8="; + hash = "sha256-VzoH+wrpUAXJRjEZC2x9qjRzTSsiaUm6aI6/uHv6h/4="; }; build-system = with python.pkgs; [ diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix index b66a350ad02c..6a25625374a8 100644 --- a/pkgs/servers/home-assistant/frontend.nix +++ b/pkgs/servers/home-assistant/frontend.nix @@ -4,7 +4,7 @@ buildPythonPackage rec { # the frontend version corresponding to a specific home-assistant version can be found here # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json pname = "home-assistant-frontend"; - version = "20240806.1"; + version = "20240809.0"; format = "wheel"; src = fetchPypi { @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "home_assistant_frontend"; dist = "py3"; python = "py3"; - hash = "sha256-tOM1KFffoPoS3FCdytdkwiptdLwKxpZFQJ4VU3i3WN0="; + hash = "sha256-PVW/W6/a/kbhbGw35/+AHvjAn1Xq3dW5nslMJWsDgv4="; }; # there is nothing to strip in this package From b444a2eac059420d822febd59fbd02b8700515c6 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 10 Aug 2024 23:58:26 +0200 Subject: [PATCH 15/16] home-assistant-component-tests.songpal: provide isal dependency --- pkgs/servers/home-assistant/tests.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix index 3e493b722802..b0e309a6791d 100644 --- a/pkgs/servers/home-assistant/tests.nix +++ b/pkgs/servers/home-assistant/tests.nix @@ -35,6 +35,9 @@ let shelly = [ pyswitchbot ]; + songpal = [ + isal + ]; tilt_ble = [ ibeacon-ble ]; From 0ec81295fb784e01a60c9bc5fa967e3b2347c5c5 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 11 Aug 2024 00:00:20 +0200 Subject: [PATCH 16/16] home-assistant-component-tests.system_log: provide isal dependency --- pkgs/servers/home-assistant/tests.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix index b0e309a6791d..e13d75356ae4 100644 --- a/pkgs/servers/home-assistant/tests.nix +++ b/pkgs/servers/home-assistant/tests.nix @@ -38,6 +38,9 @@ let songpal = [ isal ]; + system_log = [ + isal + ]; tilt_ble = [ ibeacon-ble ];