3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/mautrix-telegram/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
2 KiB
Nix
Raw Normal View History

{ lib, python3, mautrix-telegram, fetchFromGitHub
, withE2BE ? true
}:
2019-01-29 13:46:44 +00:00
let
2021-06-21 20:37:06 +01:00
python = python3.override {
packageOverrides = self: super: {
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
2022-03-04 07:25:54 +00:00
version = "1.25.0a5";
pname = "tulir-telethon";
src = oldAttrs.src.override {
inherit pname version;
2022-03-04 07:25:54 +00:00
sha256 = "sha256-WFiWczuw6eVVid2Z1LsnGE6BCEhqeCuiQ/p0d2Ahbi8=";
};
});
2021-06-21 20:37:06 +01:00
};
};
# officially supported database drivers
2021-06-21 20:37:06 +01:00
dbDrivers = with python.pkgs; [
psycopg2
aiosqlite
# 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-03-04 07:25:54 +00:00
version = "0.11.2";
2021-06-21 20:37:06 +01:00
disabled = python.pythonOlder "3.7";
2019-01-29 13:46:44 +00:00
src = fetchFromGitHub {
2021-11-17 12:23:31 +00:00
owner = "mautrix";
repo = "telegram";
rev = "v${version}";
2022-03-04 07:25:54 +00:00
sha256 = "sha256-ZECTHAP5l9tAk9Ies8XuPpH9jqYDJSRSHVKz1lA6Sjg=";
2019-01-29 13:46:44 +00:00
};
2021-12-29 04:40:25 +00:00
patches = [ ./0001-Re-add-entrypoint.patch ];
propagatedBuildInputs = with python.pkgs; ([
Mako
2019-01-29 13:46:44 +00:00
aiohttp
mautrix
sqlalchemy
2019-01-29 13:46:44 +00:00
CommonMark
ruamel-yaml
2019-01-29 13:46:44 +00:00
python_magic
tulir-telethon
telethon-session-sqlalchemy
2019-02-20 13:07:37 +00:00
pillow
lxml
setuptools
prometheus-client
] ++ 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
#
# 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;
platforms = platforms.linux;
maintainers = with maintainers; [ nyanloutre ma27 ];
2019-01-29 13:46:44 +00:00
};
}