2019-10-26 10:40:14 +02:00
|
|
|
{ lib, python3, mautrix-telegram, fetchpatch }:
|
2019-01-29 14:46:44 +01:00
|
|
|
|
|
|
|
with python3.pkgs;
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mautrix-telegram";
|
2019-09-20 23:35:14 +02:00
|
|
|
version = "0.6.1";
|
2019-01-29 14:46:44 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-09-20 23:35:14 +02:00
|
|
|
sha256 = "1lsi6x5yr8f9yjxsh1rmcd6wnxr6s6rpr720lg7sq629m42d9p1d";
|
2019-01-29 14:46:44 +01:00
|
|
|
};
|
|
|
|
|
2019-10-26 10:40:14 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://github.com/tulir/mautrix-telegram/commit/be6d395ed66d86ec7f13a262f9ae37731987019c.patch;
|
|
|
|
sha256 = "1q69ip17r45yhyrxr0pj8bvqj2grw2l39wak8pi5pm7qrxra93j2";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
2019-04-14 12:02:26 +02:00
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/alembic>/d' setup.py
|
|
|
|
'';
|
|
|
|
|
2019-01-29 14:46:44 +01:00
|
|
|
propagatedBuildInputs = [
|
2019-04-14 12:02:26 +02:00
|
|
|
Mako
|
2019-01-29 14:46:44 +01:00
|
|
|
aiohttp
|
|
|
|
mautrix-appservice
|
|
|
|
sqlalchemy
|
|
|
|
CommonMark
|
|
|
|
ruamel_yaml
|
|
|
|
future-fstrings
|
|
|
|
python_magic
|
|
|
|
telethon
|
|
|
|
telethon-session-sqlalchemy
|
2019-02-20 14:07:37 +01:00
|
|
|
pillow
|
|
|
|
lxml
|
2019-09-12 11:21:26 +02:00
|
|
|
setuptools
|
2019-01-29 14:46:44 +01:00
|
|
|
];
|
|
|
|
|
2019-04-14 12:02:26 +02: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 14:07:37 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest
|
|
|
|
pytestrunner
|
|
|
|
pytest-mock
|
|
|
|
pytest-asyncio
|
|
|
|
];
|
2019-01-29 14:46:44 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/tulir/mautrix-telegram;
|
|
|
|
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
|
|
|
|
license = licenses.agpl3Plus;
|
2019-04-14 12:02:26 +02:00
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 ];
|
2019-01-29 14:46:44 +01:00
|
|
|
};
|
|
|
|
}
|