about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyTelegramBotAPI/default.nix
blob: 391afabf931f09c5d47a34402fea0bc0b84efd6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi, aiohttp, requests }:

buildPythonPackage rec {
  pname = "pyTelegramBotAPI";
  version = "4.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-5vIjVqvr/+Cok9z3L+CaDIve2tb0mMVaMMPdMs5Ijmo=";
  };

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