pythonPackages.pyTelegramBotAPI: Init at 3.6.6 (#65509)
pythonPackages.pyTelegramBotAPI: Init at 3.6.6
This commit is contained in:
commit
5a003383fb
20
pkgs/development/python-modules/pyTelegramBotAPI/default.nix
Normal file
20
pkgs/development/python-modules/pyTelegramBotAPI/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, requests }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyTelegramBotAPI";
|
||||||
|
version = "3.6.6";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "00vycd7jvfnzmvmmhkjx9vf40vkcrwv7adas5i81r2jhjy7sks54";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -1190,6 +1190,8 @@ in {
|
|||||||
|
|
||||||
pystache = callPackage ../development/python-modules/pystache { };
|
pystache = callPackage ../development/python-modules/pystache { };
|
||||||
|
|
||||||
|
pytelegrambotapi = callPackage ../development/python-modules/pyTelegramBotAPI { };
|
||||||
|
|
||||||
pytesseract = callPackage ../development/python-modules/pytesseract { };
|
pytesseract = callPackage ../development/python-modules/pytesseract { };
|
||||||
|
|
||||||
pytest-bdd = callPackage ../development/python-modules/pytest-bdd { };
|
pytest-bdd = callPackage ../development/python-modules/pytest-bdd { };
|
||||||
|
Loading…
Reference in New Issue
Block a user