{ lib , buildPythonPackage , pythonOlder , fetchPypi , pyaes , pysocks , async-lru , pytestCheckHook , pytest-asyncio }: buildPythonPackage rec { pname = "pyrogram"; version = "1.3.1"; disabled = pythonOlder "3.6"; src = fetchPypi { pname = "Pyrogram"; inherit version; sha256 = "e883c001ebf2d0f5ce6805063470c92436c493eb15547923e5d437e2c13f66cd"; }; propagatedBuildInputs = [ pyaes pysocks async-lru ]; checkInputs = [ pytestCheckHook pytest-asyncio ]; pythonImportsCheck = [ "pyrogram" "pyrogram.errors" "pyrogram.types" ]; meta = with lib; { description = "Telegram MTProto API Client Library and Framework for Python"; homepage = "https://github.com/pyrogram/pyrogram"; license = licenses.lgpl3Plus; maintainers = with maintainers; [ dotlambda ]; }; }