mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
79 lines
1.6 KiB
Nix
79 lines
1.6 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, withE2BE ? true
|
|
}:
|
|
|
|
let
|
|
python = python3.override {
|
|
packageOverrides = self: super: {
|
|
tulir-telethon = self.telethon.overridePythonAttrs (oldAttrs: rec {
|
|
version = "1.28.0a3";
|
|
pname = "tulir-telethon";
|
|
src = super.fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-N1XQGpjfyUqcT+bsSBxC5Purvnd/+4NzVzMhiaq5yDo=";
|
|
};
|
|
doCheck = false;
|
|
});
|
|
};
|
|
};
|
|
in
|
|
python.pkgs.buildPythonPackage rec {
|
|
pname = "mautrix-telegram";
|
|
version = "0.13.0";
|
|
disabled = python.pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mautrix";
|
|
repo = "telegram";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-AfCo2uHOcSNCWXgrCLzJwl0Dj8n9Asdqm19wk0OeXgQ=";
|
|
};
|
|
|
|
format = "setuptools";
|
|
|
|
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
|
|
pillow
|
|
qrcode
|
|
# formattednumbers
|
|
phonenumbers
|
|
# metrics
|
|
prometheus-client
|
|
# sqlite
|
|
aiosqlite
|
|
] ++ lib.optionals withE2BE [
|
|
# e2be
|
|
python-olm
|
|
pycryptodome
|
|
unpaddedbase64
|
|
]);
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mautrix/telegram";
|
|
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
|
|
license = licenses.agpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ nyanloutre ma27 nickcao ];
|
|
};
|
|
}
|