14910f5943
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
20 lines
581 B
Nix
20 lines
581 B
Nix
{ lib, buildPythonPackage, fetchPypi, aiohttp, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyTelegramBotAPI";
|
|
version = "4.2.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9a407fd58a406a53ae44ae8ff5f2edb4396be67bca3436523f791642d8561de3";
|
|
};
|
|
|
|
propagatedBuildInputs = [ aiohttp requests ];
|
|
|
|
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 ];
|
|
};
|
|
}
|