3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/pyTelegramBotAPI/default.nix
2020-06-11 10:00:18 +02:00

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