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

71 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, python3, mautrix-telegram, fetchFromGitHub }:
2019-01-29 13:46:44 +00:00
with python3.pkgs;
let
# officially supported database drivers
dbDrivers = [
psycopg2
# sqlite driver is already shipped with python by default
];
in buildPythonPackage rec {
2019-01-29 13:46:44 +00:00
pname = "mautrix-telegram";
version = "0.8.2";
2019-12-24 18:15:47 +00:00
disabled = pythonOlder "3.6";
2019-01-29 13:46:44 +00:00
src = fetchFromGitHub {
owner = "tulir";
repo = pname;
rev = "v${version}";
sha256 = "0mhy9b933haz1bldkglvn81warjxdjdzgkviiv5k6fykghq473jf";
2019-01-29 13:46:44 +00:00
};
postPatch = ''
sed -i -e '/alembic>/d' requirements.txt
'';
2019-01-29 13:46:44 +00:00
propagatedBuildInputs = [
Mako
2019-01-29 13:46:44 +00:00
aiohttp
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
setuptools
] ++ dbDrivers;
2019-01-29 13:46:44 +00: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 ++ dbDrivers ++ [
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";
2019-01-29 13:46:44 +00:00
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nyanloutre ma27 ];
2019-01-29 13:46:44 +00:00
};
}