41 lines
858 B
Nix
41 lines
858 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
openssl,
|
||
|
rsa,
|
||
|
pyaes,
|
||
|
pythonOlder,
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "tulir-telethon";
|
||
|
version = "1.35.0a1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "sha256-v8cLENsskYSNE9cwLT1qQaYwEHhT303odNoDQ7c4SR0=";
|
||
|
};
|
||
|
|
||
|
patchPhase = ''
|
||
|
substituteInPlace telethon/crypto/libssl.py --replace \
|
||
|
"ctypes.util.find_library('ssl')" "'${lib.getLib openssl}/lib/libssl.so'"
|
||
|
'';
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
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;
|
||
|
};
|
||
|
passthru.updateScript = [../scripts/update-python-libraries "python/tulir-telethon.nix"];
|
||
|
}
|