home-assistant: find packages that use extra_require

This commit is contained in:
Martin Weinelt
2020-08-29 17:37:55 -07:00
committed by Jon
parent 67b7baa580
commit cc4fd57df9
2 changed files with 5 additions and 1 deletions
@@ -113,6 +113,10 @@ def name_to_attr_path(req: str, packages: Dict[str, Dict[str, str]]) -> Optional
# instead of python-3.6-python-mpd2 inside Nixpkgs
if req.startswith("python-") or req.startswith("python_"):
names.append(req[len("python-") :])
# Add name variant without extra_require, e.g. samsungctl
# instead of samsungctl[websocket]
if req.endswith("]"):
names.append(req[:req.find("[")])
for name in names:
# treat "-" and "_" equally
name = re.sub("[-_]", "[-_]", name)