mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
10 lines
339 B
Nix
10 lines
339 B
Nix
{ buildPythonPackage, pillow, python-telegram-bot, pydub }:
|
|
buildPythonPackage rec {
|
|
pname = "telegram-reverse";
|
|
version = "0.2.0";
|
|
|
|
src = "${builtins.fetchTarball https://github.com/kmein/telebots/archive/e83ec7d78f24214801d53cc3706918d282d9cadf.tar.gz}/${pname}";
|
|
|
|
propagatedBuildInputs = [ pillow python-telegram-bot pydub ];
|
|
}
|