nixpkgs/pkgs/development/python-modules/telethon/default.nix

31 lines
675 B
Nix
Raw Normal View History

2019-01-29 13:45:21 +00:00
{ lib, buildPythonPackage, fetchPypi, async_generator, rsa, pyaes, pythonOlder }:
buildPythonPackage rec {
pname = "telethon";
version = "1.6.2";
2019-01-29 13:45:21 +00:00
src = fetchPypi {
inherit version;
pname = "Telethon";
sha256 = "074h5gj0c330rb1nxzpqm31fp1vw7calh1cdkapbjx90j769iz18";
2019-01-29 13:45:21 +00:00
};
propagatedBuildInputs = [
async_generator
rsa
pyaes
];
# No tests available
doCheck = false;
disabled = pythonOlder "3.5";
meta = with lib; {
homepage = https://github.com/LonamiWebs/Telethon;
description = "Full-featured Telegram client library for Python 3";
license = licenses.mit;
maintainers = with maintainers; [ nyanloutre ];
};
}