From cb5e962f24cc73a8550beba647437a24823d04c0 Mon Sep 17 00:00:00 2001 From: Magic_RB Date: Tue, 25 Apr 2023 10:32:26 +0200 Subject: [PATCH] HomeAssistant fix hopefully Signed-off-by: Magic_RB --- containers/home-assistant.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/containers/home-assistant.nix b/containers/home-assistant.nix index 50a977f..b0ce772 100644 --- a/containers/home-assistant.nix +++ b/containers/home-assistant.nix @@ -151,13 +151,13 @@ "stream" "recorder" ]; - extraPackages = ps: with ps; - [ xmodem - psycopg2 - aiohttp_cors - ]; }).overridePythonAttrs (old: - { doCheck = false; + { + propagatedBuildInputs = with old.passthru.python.pkgs; + [ xmodem + psycopg2 + aiohttp-cors + ] ++ old.propagatedBuildInputs; }); }; };