summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyTelegramBotAPI
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2019-07-28 18:42:09 +0200
committerJanne Heß <janne@hess.ooo>2019-07-30 18:21:24 +0200
commitf110d2f30801a32333f24ef5c436622bd5fbcb3e (patch)
tree600243c1b341d9194a7b95f98eed59c8e30a2e08 /pkgs/development/python-modules/pyTelegramBotAPI
parentd3433f71a982eaa2fa9925272545b08c57eb3ef5 (diff)
pythonPackages.pyTelegramBotAPI: Init at 3.6.6
Diffstat (limited to 'pkgs/development/python-modules/pyTelegramBotAPI')
-rw-r--r--pkgs/development/python-modules/pyTelegramBotAPI/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyTelegramBotAPI/default.nix b/pkgs/development/python-modules/pyTelegramBotAPI/default.nix
new file mode 100644
index 000000000000..cb91196fc7e6
--- /dev/null
+++ b/pkgs/development/python-modules/pyTelegramBotAPI/default.nix
@@ -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 ];
+ };
+}