975a6b7b1d
Tests currently fail like this: ``` /nix/store/yslk7x7iw3hka6d33kmnba9sxaia4492-python3.7-mautrix-0.4.0/lib/python3.7/site-packages/mautrix/util/manhole.py:9: in <module> from socket import SOL_SOCKET, SO_PEERCRED E ImportError: cannot import name 'SO_PEERCRED' from 'socket' (/nix/store/81qani7sdir46gjwf3a3jr2cv1aggkz1-python3-3.7.5/lib/python3.7/socket.py) !!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!! =============================== 1 error in 1.73s =============================== ``` Those values don't seem to be available on the MacOS-version of that module. As there's no workaround implemented in the source, I assume that upstream doesn't intend to support darwin-alike platforms atm.
72 lines
1.8 KiB
Nix
72 lines
1.8 KiB
Nix
{ lib, python3, mautrix-telegram, fetchpatch }:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mautrix-telegram";
|
|
version = "0.7.0";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0xzivcn1s5j2nn9p7li9bzr0h225bnli4fr3yrh8v7npx2ymg1r3";
|
|
};
|
|
|
|
patches = [
|
|
# fix tests
|
|
(fetchpatch {
|
|
url = "https://github.com/tulir/mautrix-telegram/commit/fe52f0ad106122f08af72e356c4c62bb8875b453.patch";
|
|
sha256 = "0r7j7q78brqqx0rkchld328k00yq0ykdk7syvwpihqzj3gchacb7";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
sed -i -e '/alembic>/d' setup.py
|
|
substituteInPlace setup.py \
|
|
--replace "telethon>=1.9,<1.10" "telethon~=1.9"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
Mako
|
|
aiohttp
|
|
mautrix
|
|
sqlalchemy
|
|
CommonMark
|
|
ruamel_yaml
|
|
future-fstrings
|
|
python_magic
|
|
telethon
|
|
telethon-session-sqlalchemy
|
|
pillow
|
|
lxml
|
|
setuptools
|
|
];
|
|
|
|
# `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
|
|
];
|
|
});
|
|
|
|
checkInputs = [
|
|
pytest
|
|
pytestrunner
|
|
pytest-mock
|
|
pytest-asyncio
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = https://github.com/tulir/mautrix-telegram;
|
|
description = "A Matrix-Telegram hybrid puppeting/relaybot bridge";
|
|
license = licenses.agpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ nyanloutre ma27 ];
|
|
};
|
|
}
|