nixpkgs/pkgs/servers/mautrix-telegram/default.nix

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

83 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchPypi
, fetchFromGitHub
, withE2BE ? true
}:
2019-01-29 13:46:44 +00:00
let
2021-06-21 19:37:06 +00:00
python = python3.override {
packageOverrides = self: super: {
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
2023-09-20 13:29:31 +00:00
version = "1.30.0a2";
pname = "tulir-telethon";
src = fetchPypi {
inherit pname version;
2023-09-20 13:29:31 +00:00
hash = "sha256-PkdxOdl1HM9SEC/CMOetahDzVJDg+zPP7s9NCsVdQsA=";
};
doCheck = false;
});
2021-06-21 19:37:06 +00:00
};
};
in
python.pkgs.buildPythonPackage rec {
2019-01-29 13:46:44 +00:00
pname = "mautrix-telegram";
2023-09-20 13:29:31 +00:00
version = "0.14.2";
2022-04-17 12:54:33 +00:00
disabled = python.pythonOlder "3.8";
2019-01-29 13:46:44 +00:00
src = fetchFromGitHub {
2021-11-17 12:23:31 +00:00
owner = "mautrix";
repo = "telegram";
rev = "refs/tags/v${version}";
2023-09-20 13:29:31 +00:00
hash = "sha256-8wLLm2L6R4sfIHyqGvwFESTqS7FZhpkExqaQsdFRMa0=";
2019-01-29 13:46:44 +00:00
};
format = "setuptools";
2021-12-29 04:40:25 +00: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 13:07:37 +00:00
pillow
qrcode
# formattednumbers
phonenumbers
# metrics
prometheus-client
# sqlite
aiosqlite
# proxy support
pysocks
] ++ lib.optionals withE2BE [
# e2be
python-olm
pycryptodome
unpaddedbase64
]);
2019-01-29 13:46:44 +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;
platforms = platforms.linux;
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
2019-01-29 13:46:44 +00:00
};
}