Merge pull request #118392 from dotlambda/home-assistant-overridePythonAttrs

nixos/home-assistant: use overridePythonAttrs
This commit is contained in:
Martin Weinelt
2021-04-03 14:03:21 +02:00
committed by GitHub

View File

@@ -183,12 +183,12 @@ in {
};
package = mkOption {
default = pkgs.home-assistant.overrideAttrs (oldAttrs: {
doInstallCheck = false;
default = pkgs.home-assistant.overridePythonAttrs (oldAttrs: {
doCheck = false;
});
defaultText = literalExample ''
pkgs.home-assistant.overrideAttrs (oldAttrs: {
doInstallCheck = false;
pkgs.home-assistant.overridePythonAttrs (oldAttrs: {
doCheck = false;
})
'';
type = types.package;