1{ lib, buildPythonPackage, fetchPypi, requests }:
2
3buildPythonPackage rec {
4 pname = "pyTelegramBotAPI";
5 version = "3.7.3";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "ce42d84442ff2ce4918de6550cf377253f61e28e4fac2634495683d12df66d00";
10 };
11
12 propagatedBuildInputs = [ requests ];
13
14 meta = with lib; {
15 homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
16 description = "A simple, but extensible Python implementation for the Telegram Bot API";
17 license = licenses.gpl2;
18 maintainers = with maintainers; [ das_j ];
19 };
20}