From 9dcea72b22ffcb9dac2f17b18b6c9cb96c66ce39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 2 Dec 2025 08:58:36 -0800 Subject: [PATCH] buildHomeAssistantComponent: run manifestRequirementsCheckHook independently of checkPhase --- .../servers/home-assistant/build-custom-component/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/build-custom-component/default.nix b/pkgs/servers/home-assistant/build-custom-component/default.nix index 9a49355b2320..8d249bfa199c 100644 --- a/pkgs/servers/home-assistant/build-custom-component/default.nix +++ b/pkgs/servers/home-assistant/build-custom-component/default.nix @@ -41,13 +41,13 @@ home-assistant.python.pkgs.buildPythonPackage ( runHook postInstall ''; - nativeCheckInputs = + nativeBuildInputs = with home-assistant.python.pkgs; [ manifestRequirementsCheckHook packaging ] - ++ (args.nativeCheckInputs or [ ]); + ++ (args.nativeBuildInputs or [ ]); passthru = { isHomeAssistantComponent = true;