2021-12-07 23:02:33 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp, requests }:
|
2019-07-28 18:42:09 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyTelegramBotAPI";
|
2022-02-10 19:02:16 +00:00
|
|
|
version = "4.4.0";
|
2019-07-28 18:42:09 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-10 19:02:16 +00:00
|
|
|
sha256 = "sha256-5vIjVqvr/+Cok9z3L+CaDIve2tb0mMVaMMPdMs5Ijmo=";
|
2019-07-28 18:42:09 +02:00
|
|
|
};
|
|
|
|
|
2021-12-07 23:02:33 -08:00
|
|
|
propagatedBuildInputs = [ aiohttp requests ];
|
2019-07-28 18:42:09 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/eternnoir/pyTelegramBotAPI";
|
|
|
|
description = "A simple, but extensible Python implementation for the Telegram Bot API";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ das_j ];
|
|
|
|
};
|
|
|
|
}
|