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
1.6 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchPypi
, fetchFromGitHub
, withE2BE ? true
}:
2019-01-29 16:46:44 +03:00
let
2021-06-21 22:37:06 +03:00
python = python3.override {
packageOverrides = self: super: {
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
version = "1.28.0a9";
pname = "tulir-telethon";
src = fetchPypi {
inherit pname version;
hash = "sha256-7lRoJYhy9c8RxJTW1/7SrNtA36mwIrPcyRMPVNhWJTk=";
};
doCheck = false;
});
2021-06-21 22:37:06 +03:00
};
};
in
python.pkgs.buildPythonPackage rec {
2019-01-29 16:46:44 +03:00
pname = "mautrix-telegram";
version = "0.14.0";
2022-04-17 15:54:33 +03:00
disabled = python.pythonOlder "3.8";
2019-01-29 16:46:44 +03:00
src = fetchFromGitHub {
2021-11-17 15:23:31 +03:00
owner = "mautrix";
repo = "telegram";
rev = "refs/tags/v${version}";
hash = "sha256-OPWa3jqaLnV7M1Q77N10A3HT65dNon6RWE5mbQRvjEs=";
2019-01-29 16:46:44 +03:00
};
format = "setuptools";
2021-12-29 07:40:25 +03:00
patches = [ ./0001-Re-add-entrypoint.patch ];
propagatedBuildInputs = with python.pkgs; ([
ruamel-yaml
python-magic
commonmark
aiohttp
yarl
mautrix
tulir-telethon
asyncpg
mako
setuptools
# speedups
cryptg
aiodns
brotli
# qr_login
2019-02-20 16:07:37 +03:00
pillow
qrcode
# formattednumbers
phonenumbers
# metrics
prometheus-client
# sqlite
aiosqlite
] ++ lib.optionals withE2BE [
# e2be
python-olm
pycryptodome
unpaddedbase64
]);
2019-01-29 16:46:44 +03:00
# has no tests
2020-11-29 11:14:23 +03:00
doCheck = false;
2019-01-29 16:46:44 +03:00
meta = with lib; {
2021-11-17 15:23:31 +03:00
homepage = "https://github.com/mautrix/telegram";
2019-01-29 16:46:44 +03:00
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
2019-01-29 16:46:44 +03:00
};
}