streaming-link-bot: import

This commit is contained in:
2026-03-14 07:30:46 +01:00
parent b193946a1a
commit 9d7543ec8b
2 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (py: [
py.yt-dlp
py.spotipy
py.ytmusicapi
py.python-telegram-bot
]))
];
}