1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "pyTelegramBotAPI"; 5 version = "4.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "05f85dacbcf0bdf2459698bab4325f3a699d1c04bc61581627d76d075c3d5488"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 meta = with lib; { 15 homepage = "https://github.com/eternnoir/pyTelegramBotAPI"; 16 description = "A simple, but extensible Python implementation for the Telegram Bot API"; 17 license = licenses.gpl2; 18 maintainers = with maintainers; [ das_j ]; 19 }; 20}