home-assistant: support youtube component

This commit is contained in:
Robert Schütz 2024-02-06 17:57:27 -08:00
parent 587353aff2
commit 283af909e7
2 changed files with 10 additions and 1 deletions

View file

@ -5633,7 +5633,8 @@
fnv-hash-fast
psutil-home-assistant
sqlalchemy
]; # missing inputs: youtubeaio
youtubeaio
];
"zabbix" = ps: with ps; [
py-zabbix
];
@ -6505,6 +6506,7 @@
"yeelight"
"yolink"
"youless"
"youtube"
"zamg"
"zeroconf"
"zerproc"

View file

@ -442,6 +442,13 @@ let
];
});
youtubeaio = super.youtubeaio.overridePythonAttrs (old: {
pytestFlagsArray = [
# fails with pydantic v1
"--deselect=tests/test_video.py::test_fetch_video"
];
});
# internal python packages only consumed by home-assistant itself
home-assistant-frontend = self.callPackage ./frontend.nix { };
home-assistant-intents = self.callPackage ./intents.nix { };