home-assistant: don't treat frontend specially in parse-requirements.py

Since we now consider the package set as overridden by home-assistant,
home-assistant-frontend is part of it.
This commit is contained in:
Robert Schütz 2021-06-16 10:36:17 +02:00
parent e264354b61
commit 1b498a2e14

View file

@ -183,8 +183,7 @@ def main() -> None:
if attr_path is not None:
# Add attribute path without "python3Packages." prefix
attr_paths.append(attr_path[len(PKG_SET + ".") :])
# home-assistant-frontend is always in propagatedBuildInputs
elif name != 'home-assistant-frontend':
else:
missing_reqs.append(name)
else:
build_inputs[component] = (attr_paths, missing_reqs)