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.
This commit is contained in:
Martin Weinelt 2024-04-07 02:48:21 +02:00
parent 7b108c6723
commit 6f94ea883c
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 4 additions and 0 deletions

View File

@ -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;
};
};
};