My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/telegram/default.nix

21 lines
378 B

{ 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;
};
}