Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 378 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "telegram"; 8 version = "0.0.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1495l2ml8mg120wfvqhikqkfczhwwaby40vdmsz8v2l69jps01fl"; 13 }; 14 15 meta = with lib; { 16 homepage = "https://github.com/liluo/telegram"; 17 description = "Telegram APIs"; 18 license = licenses.mit; 19 }; 20 21}