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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.4 KiB
Nix
Raw Normal View History

{ enableSystemd ? stdenv.isLinux
, fetchFromGitHub
, fetchpatch
2021-09-03 18:28:48 +02:00
, lib
, python3
, stdenv
}:
python3.pkgs.buildPythonPackage rec {
pname = "mautrix-facebook";
version = "unstable-2022-05-06";
2021-09-03 18:28:48 +02:00
src = fetchFromGitHub {
owner = "mautrix";
repo = "facebook";
rev = "5e2c4e7f5a38e3c5d984d690c0ebee9b6bb4768c";
hash = "sha256-ukFtVRrmaJVVwgp5siwEwbfq6Yq5rmu3XJA5H2n/eJU=";
2021-09-03 18:28:48 +02:00
};
propagatedBuildInputs = with python3.pkgs; [
CommonMark
aiohttp
asyncpg
mautrix
paho-mqtt
pillow
prometheus-client
pycryptodome
python-olm
python-magic
ruamel-yaml
2021-09-03 18:28:48 +02:00
unpaddedbase64
yarl
zstandard
] ++ lib.optional enableSystemd systemd;
2021-09-03 18:28:48 +02:00
postPatch = ''
# Drop version limiting so that every dependency update doesn't break this package.
sed -i -e 's/,<.*//' requirements.txt
'';
2021-09-03 18:28:48 +02:00
postInstall = ''
mkdir -p $out/bin
cat <<-END >$out/bin/mautrix-facebook
#!/bin/sh
PYTHONPATH="$PYTHONPATH" exec ${python3}/bin/python -m mautrix_facebook "\$@"
END
chmod +x $out/bin/mautrix-facebook
'';
2022-01-10 01:14:02 +01:00
checkPhase = ''
$out/bin/mautrix-facebook --help
'';
2021-09-03 18:28:48 +02:00
meta = with lib; {
homepage = "https://github.com/mautrix/facebook";
description = "A Matrix-Facebook Messenger puppeting bridge";
license = licenses.agpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ kevincox ];
};
}