about summary refs log tree commit diff
path: root/pkgs/servers/home-assistant
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-04-07 02:48:21 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-04-07 02:48:21 +0200
commit6f94ea883ccd95226647ba9c20683efb904b5f93 (patch)
tree6d3675796d418e7d19e38630c6717e081961e8d6 /pkgs/servers/home-assistant
parent7b108c6723794b2a3b4a1ccc434120ecc48965d7 (diff)
home-assistant: add passthru test without check deps
This is a safeguard that we're not missing any runtime dependencies, that
the check inputs randomly provide.
Diffstat (limited to 'pkgs/servers/home-assistant')
-rw-r--r--pkgs/servers/home-assistant/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix
index 20617df72c46a..c6f3dd047b7bd 100644
--- a/pkgs/servers/home-assistant/default.nix
+++ b/pkgs/servers/home-assistant/default.nix
@@ -709,6 +709,10 @@ in python.pkgs.buildPythonApplication rec {
         package = home-assistant;
         command = "hass --version";
       };
+      withoutCheckDeps = home-assistant.overridePythonAttrs {
+        pname = "home-assistant-without-check-deps";
+        doCheck = false;
+      };
     };
   };