2020-02-04 21:23:41 +00:00
|
|
|
{ lib, python3, mautrix-telegram }:
|
2019-01-29 13:46:44 +00:00
|
|
|
|
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mautrix-telegram";
|
2020-02-04 21:23:41 +00:00
|
|
|
version = "0.7.1";
|
2019-12-24 18:15:47 +00:00
|
|
|
disabled = pythonOlder "3.6";
|
2019-01-29 13:46:44 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-02-04 21:23:41 +00:00
|
|
|
sha256 = "1yi4h37lhlpa095hzd0gwn1ifbycq8878kj5n2sjhw8kk6nblda9";
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
|
2019-04-14 11:02:26 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/alembic>/d' setup.py
|
2019-12-24 18:15:47 +00:00
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "telethon>=1.9,<1.10" "telethon~=1.9"
|
2019-04-14 11:02:26 +01:00
|
|
|
'';
|
|
|
|
|
2019-01-29 13:46:44 +00:00
|
|
|
propagatedBuildInputs = [
|
2019-04-14 11:02:26 +01:00
|
|
|
Mako
|
2019-01-29 13:46:44 +00:00
|
|
|
aiohttp
|
2019-12-28 12:11:27 +00:00
|
|
|
mautrix
|
2019-01-29 13:46:44 +00:00
|
|
|
sqlalchemy
|
|
|
|
CommonMark
|
|
|
|
ruamel_yaml
|
|
|
|
future-fstrings
|
|
|
|
python_magic
|
|
|
|
telethon
|
|
|
|
telethon-session-sqlalchemy
|
2019-02-20 13:07:37 +00:00
|
|
|
pillow
|
|
|
|
lxml
|
2019-09-12 10:21:26 +01:00
|
|
|
setuptools
|
2019-01-29 13:46:44 +00:00
|
|
|
];
|
|
|
|
|
2019-04-14 11:02:26 +01:00
|
|
|
# `alembic` (a database migration tool) is only needed for the initial setup,
|
|
|
|
# and not needed during the actual runtime. However `alembic` requires `mautrix-telegram`
|
|
|
|
# in its environment to create a database schema from all models.
|
|
|
|
#
|
|
|
|
# Hence we need to patch away `alembic` from `mautrix-telegram` and create an `alembic`
|
|
|
|
# which has `mautrix-telegram` in its environment.
|
|
|
|
passthru.alembic = alembic.overrideAttrs (old: {
|
|
|
|
propagatedBuildInputs = old.propagatedBuildInputs ++ [
|
|
|
|
mautrix-telegram
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2019-02-20 13:07:37 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
pytestrunner
|
|
|
|
pytest-mock
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
2019-01-29 13:46:44 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/tulir/mautrix-telegram;
|
|
|
|
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
|
|
|
|
license = licenses.agpl3Plus;
|
2019-12-29 22:37:31 +00:00
|
|
|
platforms = platforms.linux;
|
2019-04-14 11:02:26 +01:00
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 ];
|
2019-01-29 13:46:44 +00:00
|
|
|
};
|
|
|
|
}
|