summary refs log blame commit diff
path: root/pkgs/development/python-modules/telegram/default.nix
blob: c297efc0efdd9f43a5a627450dcd852cb4333b14 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
     












                                                                    
                    
                                                   




                                  
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "telegram";
  version = "0.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1495l2ml8mg120wfvqhikqkfczhwwaby40vdmsz8v2l69jps01fl";
  };

  meta = with lib; {
    homepage = "https://github.com/liluo/telegram";
    description = "Telegram APIs";
    license = licenses.mit;
  };

}