forked from mirrors/nixpkgs
21 lines
564 B
Nix
21 lines
564 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyTelegramBotAPI";
|
|
version = "3.7.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "8ef8e54098efd29a6bcac28d127480ae2b7491c1d33e4e0c7bbf0fc8949e0fae";
|
|
};
|
|
|
|
propagatedBuildInputs = [ 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 ];
|
|
};
|
|
}
|