2021-08-07 11:38:46 +01:00
|
|
|
{ lib, python3, mautrix-telegram, fetchFromGitHub
|
|
|
|
, withE2BE ? true
|
|
|
|
}:
|
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-01-23 15:58:17 +00:00
|
|
|
version = "1.25.0a3";
|
2021-11-13 15:00:17 +00:00
|
|
|
pname = "tulir-telethon";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit pname version;
|
2022-01-23 15:58:17 +00:00
|
|
|
sha256 = "sha256-/kau9Q2+7giVx52tmjvYIbcDcY1/om31X9BlRvZipuk=";
|
2021-11-13 15:00:17 +00:00
|
|
|
};
|
|
|
|
});
|
2021-06-21 20:37:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-08-01 19:43:24 +01:00
|
|
|
# officially supported database drivers
|
2021-06-21 20:37:06 +01:00
|
|
|
dbDrivers = with python.pkgs; [
|
2020-08-01 19:43:24 +01:00
|
|
|
psycopg2
|
2021-11-13 15:00:17 +00:00
|
|
|
aiosqlite
|
2020-08-01 19:43:24 +01:00
|
|
|
# sqlite driver is already shipped with python by default
|
|
|
|
];
|
|
|
|
|
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-01-23 15:58:17 +00:00
|
|
|
version = "0.11.1";
|
2021-06-21 20:37:06 +01:00
|
|
|
disabled = python.pythonOlder "3.7";
|
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-01-23 15:58:17 +00:00
|
|
|
sha256 = "sha256-Df+v1Q+5Iaa9GKcwIabMKjJwmVd5Qub8M54jEEiAPFc=";
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
|
2021-12-29 04:40:25 +00:00
|
|
|
patches = [ ./0001-Re-add-entrypoint.patch ];
|
2019-04-14 11:02:26 +01:00
|
|
|
postPatch = ''
|
2021-08-12 22:24:30 +01:00
|
|
|
substituteInPlace requirements.txt \
|
|
|
|
--replace "telethon>=1.22,<1.23" "telethon"
|
2019-04-14 11:02:26 +01:00
|
|
|
'';
|
|
|
|
|
2021-08-12 22:24:30 +01:00
|
|
|
|
2021-08-07 11:38:46 +01:00
|
|
|
propagatedBuildInputs = with python.pkgs; ([
|
2019-04-14 11:02:26 +01:00
|
|
|
Mako
|
2019-01-29 13:46:44 +00:00
|
|
|
aiohttp
|
2021-06-21 19:24:44 +01:00
|
|
|
mautrix
|
|
|
|
sqlalchemy
|
2019-01-29 13:46:44 +00:00
|
|
|
CommonMark
|
2021-11-03 10:10:50 +00:00
|
|
|
ruamel-yaml
|
2019-01-29 13:46:44 +00:00
|
|
|
python_magic
|
2021-11-13 15:00:17 +00:00
|
|
|
tulir-telethon
|
2021-06-21 19:24:44 +01:00
|
|
|
telethon-session-sqlalchemy
|
2019-02-20 13:07:37 +00:00
|
|
|
pillow
|
|
|
|
lxml
|
2019-09-12 10:21:26 +01:00
|
|
|
setuptools
|
2021-10-05 11:06:16 +01:00
|
|
|
prometheus-client
|
2021-08-07 11:38:46 +01:00
|
|
|
] ++ lib.optionals withE2BE [
|
|
|
|
asyncpg
|
|
|
|
python-olm
|
|
|
|
pycryptodome
|
|
|
|
unpaddedbase64
|
|
|
|
]) ++ dbDrivers;
|
2019-01-29 13:46:44 +00:00
|
|
|
|
2020-11-29 08:14:23 +00:00
|
|
|
# Tests are broken and throw the following for every test:
|
|
|
|
# TypeError: 'Mock' object is not subscriptable
|
2020-11-29 20:20:50 +00:00
|
|
|
#
|
|
|
|
# The tests were touched the last time in 2019 and upstream CI doesn't even build
|
|
|
|
# those, so it's safe to assume that this part of the software is abandoned.
|
2020-11-29 08:14:23 +00:00
|
|
|
doCheck = false;
|
2021-06-21 20:37:06 +01:00
|
|
|
checkInputs = with python.pkgs; [
|
2019-02-20 13:07:37 +00:00
|
|
|
pytest
|
|
|
|
pytest-mock
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
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;
|
2019-04-14 11:02:26 +01:00
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 ];
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
}
|