buildHomeAssistantComponent: inherit meta.platforms from home-assistant (#355206)

This commit is contained in:
Martin Weinelt 2024-11-11 18:47:47 +01:00 committed by GitHub
commit dd11284117
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,5 +43,9 @@ home-assistant.python.pkgs.buildPythonPackage (
isHomeAssistantComponent = true;
} // args.passthru or { };
} // builtins.removeAttrs args [ "nativeCheckInputs" "passthru" ]
meta = {
inherit (home-assistant.meta) platforms;
} // args.meta or { };
} // builtins.removeAttrs args [ "meta" "nativeCheckInputs" "passthru" ]
)