2022-07-28 09:10:27 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
2023-05-25 16:06:38 +00:00
|
|
|
, fetchPypi
|
2022-07-28 09:10:27 +00:00
|
|
|
, fetchFromGitHub
|
2021-08-07 10:38:46 +00:00
|
|
|
, withE2BE ? true
|
|
|
|
}:
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2020-08-01 18:43:24 +00:00
|
|
|
let
|
2021-06-21 19:37:06 +00:00
|
|
|
python = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
2021-11-13 15:00:17 +00:00
|
|
|
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
|
2023-07-02 15:44:51 +00:00
|
|
|
version = "1.29.0a2";
|
2021-11-13 15:00:17 +00:00
|
|
|
pname = "tulir-telethon";
|
2023-05-25 16:06:38 +00:00
|
|
|
src = fetchPypi {
|
2021-11-13 15:00:17 +00:00
|
|
|
inherit pname version;
|
2023-07-02 15:44:51 +00:00
|
|
|
hash = "sha256-pTN8mJxbXvnhL11PCH/ZLeSqW0GV124Y3JnDcLek8JE=";
|
2021-11-13 15:00:17 +00:00
|
|
|
};
|
2022-09-25 14:03:09 +00:00
|
|
|
doCheck = false;
|
2021-11-13 15:00:17 +00:00
|
|
|
});
|
2021-06-21 19:37:06 +00:00
|
|
|
};
|
|
|
|
};
|
2023-01-14 12:11:14 +00:00
|
|
|
in
|
2023-02-28 11:12:16 +00:00
|
|
|
python.pkgs.buildPythonPackage rec {
|
2019-01-29 13:46:44 +00:00
|
|
|
pname = "mautrix-telegram";
|
2023-07-02 15:44:51 +00:00
|
|
|
version = "0.14.1";
|
2022-04-17 12:54:33 +00:00
|
|
|
disabled = python.pythonOlder "3.8";
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2020-07-28 09:56:05 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-11-17 12:23:31 +00:00
|
|
|
owner = "mautrix";
|
|
|
|
repo = "telegram";
|
2023-02-28 11:12:16 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-07-02 15:44:51 +00:00
|
|
|
hash = "sha256-n3gO8R5lVl/8Tgo2tPzM64O2BRhoitsuPIC87bfxczc=";
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
|
2023-01-14 12:11:14 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2021-12-29 04:40:25 +00:00
|
|
|
patches = [ ./0001-Re-add-entrypoint.patch ];
|
2021-08-12 21:24:30 +00:00
|
|
|
|
2021-08-07 10:38:46 +00:00
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
2021-11-03 10:10:50 +00:00
|
|
|
ruamel-yaml
|
2022-05-06 23:18:35 +00:00
|
|
|
python-magic
|
2023-02-19 16:35:34 +00:00
|
|
|
commonmark
|
2022-07-28 09:10:27 +00:00
|
|
|
aiohttp
|
|
|
|
yarl
|
|
|
|
mautrix
|
2021-11-13 15:00:17 +00:00
|
|
|
tulir-telethon
|
2022-07-28 09:10:27 +00:00
|
|
|
asyncpg
|
2023-02-19 17:28:43 +00:00
|
|
|
mako
|
2023-03-16 06:35:13 +00:00
|
|
|
setuptools
|
2023-01-14 12:11:14 +00:00
|
|
|
# speedups
|
2022-07-28 09:10:27 +00:00
|
|
|
cryptg
|
|
|
|
aiodns
|
|
|
|
brotli
|
2023-01-14 12:11:14 +00:00
|
|
|
# qr_login
|
2019-02-20 13:07:37 +00:00
|
|
|
pillow
|
2022-07-28 09:10:27 +00:00
|
|
|
qrcode
|
2023-01-14 12:11:14 +00:00
|
|
|
# formattednumbers
|
2022-07-28 09:10:27 +00:00
|
|
|
phonenumbers
|
2023-01-14 12:11:14 +00:00
|
|
|
# metrics
|
2021-10-05 10:06:16 +00:00
|
|
|
prometheus-client
|
2023-01-14 12:11:14 +00:00
|
|
|
# sqlite
|
2022-07-28 09:10:27 +00:00
|
|
|
aiosqlite
|
2023-09-05 22:02:29 +00:00
|
|
|
# proxy support
|
|
|
|
pysocks
|
2021-08-07 10:38:46 +00:00
|
|
|
] ++ lib.optionals withE2BE [
|
2023-01-14 12:11:14 +00:00
|
|
|
# e2be
|
2021-08-07 10:38:46 +00:00
|
|
|
python-olm
|
|
|
|
pycryptodome
|
|
|
|
unpaddedbase64
|
2022-07-28 09:10:27 +00:00
|
|
|
]);
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2022-07-28 09:10:27 +00:00
|
|
|
# has no tests
|
2020-11-29 08:14:23 +00:00
|
|
|
doCheck = false;
|
2019-01-29 13:46:44 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-11-17 12:23:31 +00:00
|
|
|
homepage = "https://github.com/mautrix/telegram";
|
2019-01-29 13:46:44 +00:00
|
|
|
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
|
|
|
|
license = licenses.agpl3Plus;
|
2019-12-29 22:37:31 +00:00
|
|
|
platforms = platforms.linux;
|
2022-07-28 09:10:27 +00:00
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
}
|