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