2021-06-21 17:29:34 +00:00
|
|
|
{ lib, python3, fetchFromGitHub }:
|
2021-04-13 03:37:17 +00:00
|
|
|
|
2021-07-10 08:31:04 +00:00
|
|
|
python3.pkgs.buildPythonPackage rec {
|
2021-04-13 03:37:17 +00:00
|
|
|
pname = "mautrix-signal";
|
2022-12-04 00:08:39 +00:00
|
|
|
version = "0.4.2";
|
2021-04-13 03:37:17 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-11-17 12:23:31 +00:00
|
|
|
owner = "mautrix";
|
|
|
|
repo = "signal";
|
2022-10-22 19:35:18 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2022-12-04 00:08:39 +00:00
|
|
|
sha256 = "sha256-UbetU1n9zD/mVFaJc9FECDq/Zell1TI/aYPsGXGB8Js=";
|
2021-04-13 03:37:17 +00:00
|
|
|
};
|
|
|
|
|
2023-01-31 05:52:58 +00:00
|
|
|
postPatch = ''
|
|
|
|
# the version mangling in mautrix_signal/get_version.py interacts badly with pythonRelaxDepsHook
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace 'version=version' 'version="${version}"'
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
pythonRelaxDepsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonRelaxDeps = [
|
|
|
|
"mautrix"
|
|
|
|
];
|
|
|
|
|
2021-07-10 08:31:04 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2023-03-10 22:28:26 +00:00
|
|
|
commonmark
|
2021-04-13 03:37:17 +00:00
|
|
|
aiohttp
|
|
|
|
asyncpg
|
|
|
|
attrs
|
2023-02-19 16:35:34 +00:00
|
|
|
commonmark
|
2021-04-13 03:37:17 +00:00
|
|
|
mautrix
|
|
|
|
phonenumbers
|
|
|
|
pillow
|
2021-08-26 00:08:48 +00:00
|
|
|
prometheus-client
|
2021-04-13 03:37:17 +00:00
|
|
|
pycryptodome
|
|
|
|
python-olm
|
2022-05-06 23:18:35 +00:00
|
|
|
python-magic
|
2021-04-13 03:37:17 +00:00
|
|
|
qrcode
|
2021-11-03 10:10:50 +00:00
|
|
|
ruamel-yaml
|
2021-04-13 03:37:17 +00:00
|
|
|
unpaddedbase64
|
|
|
|
yarl
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
|
|
|
|
# Make a little wrapper for running mautrix-signal with its dependencies
|
|
|
|
echo "$mautrixSignalScript" > $out/bin/mautrix-signal
|
|
|
|
echo "#!/bin/sh
|
2021-05-03 05:51:47 +00:00
|
|
|
exec python -m mautrix_signal \"\$@\"
|
2021-04-13 03:37:17 +00:00
|
|
|
" > $out/bin/mautrix-signal
|
|
|
|
chmod +x $out/bin/mautrix-signal
|
|
|
|
wrapProgram $out/bin/mautrix-signal \
|
2022-09-07 11:43:43 +00:00
|
|
|
--prefix PATH : "${python3}/bin" \
|
|
|
|
--prefix PYTHONPATH : "$PYTHONPATH"
|
2021-04-13 03:37:17 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
2021-11-17 12:23:31 +00:00
|
|
|
homepage = "https://github.com/mautrix/signal";
|
2021-04-13 03:37:17 +00:00
|
|
|
description = "A Matrix-Signal puppeting bridge";
|
|
|
|
license = licenses.agpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ expipiplus1 ];
|
|
|
|
};
|
|
|
|
}
|