19 buildPythonPackage rec {
20 pname = "pytelegrambotapi";
22 format = "setuptools";
24 disabled = pythonOlder "3.7";
26 src = fetchFromGitHub {
28 repo = "pyTelegramBotAPI";
29 rev = "refs/tags/${version}";
30 hash = "sha256-R52j4JnoM0nlZvlcDox2Wz3WjTEstNaqbg8SPiPHD4c=";
33 passthru.optional-dependencies = {
69 ] ++ passthru.optional-dependencies.watchdog
70 ++ passthru.optional-dependencies.aiohttp;
72 pythonImportsCheck = [
77 description = "Python implementation for the Telegram Bot API";
78 homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
79 changelog = "https://github.com/eternnoir/pyTelegramBotAPI/releases/tag/${version}";
80 license = licenses.gpl2Only;
81 maintainers = with maintainers; [ das_j ];