mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 11:23:29 +00:00
home-assistant: support telegram and telegram_bot components
This commit is contained in:
parent
f9a2047b03
commit
df05cd356a
@ -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"
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user