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

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

75 lines
1.6 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchFromGitHub
, withE2BE ? true
, withHQthumbnails ? false
}:
2019-01-29 14:46:44 +01:00
let
2021-06-21 21:37:06 +02:00
python = python3.override {
packageOverrides = self: super: {
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
version = "1.25.0a20";
pname = "tulir-telethon";
src = super.fetchPypi {
inherit pname version;
sha256 = "sha256-X9oo+YCNMqQrJvQa/PIi9dFgaeQxbrlnwUJnwjRb6Jc=";
};
doCheck = false;
});
2021-06-21 21:37:06 +02:00
};
};
in python.pkgs.buildPythonPackage rec {
2019-01-29 14:46:44 +01:00
pname = "mautrix-telegram";
version = "0.12.0";
2022-04-17 14:54:33 +02:00
disabled = python.pythonOlder "3.8";
2019-01-29 14:46:44 +01:00
src = fetchFromGitHub {
2021-11-17 13:23:31 +01:00
owner = "mautrix";
repo = "telegram";
rev = "v${version}";
sha256 = "sha256-SUwiRrTY8NgOGQ643prsm3ZklOlwX/59m/u1aewFuik=";
2019-01-29 14:46:44 +01:00
};
2021-12-29 05:40:25 +01:00
patches = [ ./0001-Re-add-entrypoint.patch ];
propagatedBuildInputs = with python.pkgs; ([
ruamel-yaml
python-magic
CommonMark
aiohttp
yarl
mautrix
tulir-telethon
asyncpg
Mako
# optional
cryptg
cchardet
aiodns
brotli
2019-02-20 14:07:37 +01:00
pillow
qrcode
phonenumbers
prometheus-client
aiosqlite
] ++ lib.optionals withHQthumbnails [
moviepy
] ++ lib.optionals withE2BE [
python-olm
pycryptodome
unpaddedbase64
]);
2019-01-29 14:46:44 +01:00
# has no tests
2020-11-29 09:14:23 +01:00
doCheck = false;
2019-01-29 14:46:44 +01:00
meta = with lib; {
2021-11-17 13:23:31 +01:00
homepage = "https://github.com/mautrix/telegram";
2019-01-29 14:46:44 +01:00
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
2019-01-29 14:46:44 +01:00
};
}