nixos/home-assistant: use overridePythonAttrs

This commit is contained in:
Robert Schütz 2021-04-03 12:43:10 +02:00
parent a82f4038d3
commit f9bd8b1b7b

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;