{ lib, buildPythonPackage, fetchPypi, requests }: buildPythonPackage rec { pname = "pyTelegramBotAPI"; version = "4.1.1"; src = fetchPypi { inherit pname version; sha256 = "cc8011ca05301653f2e5c2d02eadff0e882b611841a76f9e5b911994899df49e"; }; 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 ]; }; }