1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

catullus: reliably deploy telegram-reverse

This commit is contained in:
Kierán Meinhardt
2019-02-01 02:00:07 +01:00
parent c70c4d106d
commit 16f9fbb491
4 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
{ 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 ];
}