home-assistant: support telegram and telegram_bot components

This commit is contained in:
Robert Schütz 2024-07-21 03:07:23 -07:00
parent f9a2047b03
commit df05cd356a
2 changed files with 7 additions and 8 deletions

View File

@ -4456,10 +4456,12 @@
];
"telegram" = ps: with ps; [
python-telegram-bot
]; # missing inputs: python-telegram-bot.optional-dependencies.socks
]
++ python-telegram-bot.optional-dependencies.socks;
"telegram_bot" = ps: with ps; [
python-telegram-bot
]; # missing inputs: python-telegram-bot.optional-dependencies.socks
]
++ python-telegram-bot.optional-dependencies.socks;
"tellduslive" = ps: with ps; [
tellduslive
];
@ -5937,6 +5939,8 @@
"tcp"
"technove"
"tedee"
"telegram"
"telegram_bot"
"tellduslive"
"temper"
"template"

View File

@ -134,12 +134,7 @@ in lib.listToAttrs (map (component: lib.nameValuePair component (
'';
meta = old.meta // {
broken = lib.elem component [
# pinned version incompatible with urllib3>=2.0
"telegram_bot"
# depends on telegram_bot
"telegram"
];
broken = lib.elem component [ ];
# upstream only tests on Linux, so do we.
platforms = lib.platforms.linux;
};