depot/third_party/nixpkgs/pkgs/development/python-modules/pyTelegramBotAPI/default.nix
Default email 14910f5943 Project import generated by Copybara.
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
2022-01-13 15:06:32 -05:00

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 ];
};
}