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

62 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, python3, mautrix-telegram }:
2019-01-29 14:46:44 +01:00
with python3.pkgs;
buildPythonPackage rec {
pname = "mautrix-telegram";
version = "0.8.1";
2019-12-24 19:15:47 +01:00
disabled = pythonOlder "3.6";
2019-01-29 14:46:44 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1gz6d28dq3ykvr3wp85wkc05lbppdzf5j9i62pgx0blmx3jh0yrk";
2019-01-29 14:46:44 +01:00
};
postPatch = ''
sed -i -e '/alembic>/d' requirements.txt
'';
2019-01-29 14:46:44 +01:00
propagatedBuildInputs = [
Mako
2019-01-29 14:46:44 +01:00
aiohttp
mautrix
2019-01-29 14:46:44 +01:00
sqlalchemy
CommonMark
ruamel_yaml
future-fstrings
python_magic
telethon
telethon-session-sqlalchemy
2019-02-20 14:07:37 +01:00
pillow
lxml
setuptools
2019-01-29 14:46:44 +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 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";
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 ];
2019-01-29 14:46:44 +01:00
};
}