2022-07-28 10:10:27 +01:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
2021-08-07 11:38:46 +01:00
|
|
|
, withE2BE ? true
|
2022-07-28 10:10:27 +01:00
|
|
|
, withHQthumbnails ? false
|
2021-08-07 11:38:46 +01:00
|
|
|
}:
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2020-08-01 19:43:24 +01:00
|
|
|
let
|
2021-06-21 20:37:06 +01:00
|
|
|
python = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
2021-11-13 15:00:17 +00:00
|
|
|
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
|
2022-10-03 14:59:52 +01:00
|
|
|
version = "1.26.0a5";
|
2021-11-13 15:00:17 +00:00
|
|
|
pname = "tulir-telethon";
|
2022-09-25 15:03:09 +01:00
|
|
|
src = super.fetchPypi {
|
2021-11-13 15:00:17 +00:00
|
|
|
inherit pname version;
|
2022-10-03 14:59:52 +01:00
|
|
|
sha256 = "sha256-s6pj9kHqcl6XU1KQ/aOw1XWQ3CyDotaDl0m7aj9SbW4=";
|
2021-11-13 15:00:17 +00:00
|
|
|
};
|
2022-09-25 15:03:09 +01:00
|
|
|
doCheck = false;
|
2021-11-13 15:00:17 +00:00
|
|
|
});
|
2021-06-21 20:37:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in python.pkgs.buildPythonPackage rec {
|
2019-01-29 13:46:44 +00:00
|
|
|
pname = "mautrix-telegram";
|
2022-10-03 14:59:52 +01:00
|
|
|
version = "0.12.1";
|
2022-04-17 13:54:33 +01:00
|
|
|
disabled = python.pythonOlder "3.8";
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2020-07-28 10:56:05 +01:00
|
|
|
src = fetchFromGitHub {
|
2021-11-17 12:23:31 +00:00
|
|
|
owner = "mautrix";
|
|
|
|
repo = "telegram";
|
2021-08-19 13:25:56 +01:00
|
|
|
rev = "v${version}";
|
2022-10-03 14:59:52 +01:00
|
|
|
sha256 = "sha256-ecNcoNz++HtuDZnDLsXfPL0MRF+XMQ1BU/NFkKPbD5U=";
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
|
2021-12-29 04:40:25 +00:00
|
|
|
patches = [ ./0001-Re-add-entrypoint.patch ];
|
2021-08-12 22:24:30 +01:00
|
|
|
|
2022-11-14 22:17:31 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace requirements.txt \
|
|
|
|
--replace "asyncpg>=0.20,<0.27" "asyncpg>=0.20"
|
|
|
|
'';
|
|
|
|
|
2021-08-07 11:38:46 +01:00
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
2021-11-03 10:10:50 +00:00
|
|
|
ruamel-yaml
|
2022-05-07 00:18:35 +01:00
|
|
|
python-magic
|
2022-07-28 10:10:27 +01:00
|
|
|
CommonMark
|
|
|
|
aiohttp
|
|
|
|
yarl
|
|
|
|
mautrix
|
2021-11-13 15:00:17 +00:00
|
|
|
tulir-telethon
|
2022-07-28 10:10:27 +01:00
|
|
|
asyncpg
|
|
|
|
Mako
|
|
|
|
# optional
|
|
|
|
cryptg
|
|
|
|
cchardet
|
|
|
|
aiodns
|
|
|
|
brotli
|
2019-02-20 13:07:37 +00:00
|
|
|
pillow
|
2022-07-28 10:10:27 +01:00
|
|
|
qrcode
|
|
|
|
phonenumbers
|
2021-10-05 11:06:16 +01:00
|
|
|
prometheus-client
|
2022-07-28 10:10:27 +01:00
|
|
|
aiosqlite
|
|
|
|
] ++ lib.optionals withHQthumbnails [
|
|
|
|
moviepy
|
2021-08-07 11:38:46 +01:00
|
|
|
] ++ lib.optionals withE2BE [
|
|
|
|
python-olm
|
|
|
|
pycryptodome
|
|
|
|
unpaddedbase64
|
2022-07-28 10:10:27 +01:00
|
|
|
]);
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2022-07-28 10:10:27 +01: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 10:10:27 +01:00
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
}
|