1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "telegram"; 9 version = "0.0.1"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "1495l2ml8mg120wfvqhikqkfczhwwaby40vdmsz8v2l69jps01fl"; 15 }; 16 17 meta = with lib; { 18 homepage = "https://github.com/liluo/telegram"; 19 description = "Telegram APIs"; 20 license = licenses.mit; 21 }; 22}