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
commit 2c0c4d222a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;