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

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

65 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
2021-09-03 16:28:48 +00:00
, python3
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
2021-09-03 16:28:48 +00:00
}:
python3.pkgs.buildPythonPackage rec {
pname = "mautrix-facebook";
version = "0.4.1";
2021-09-03 16:28:48 +00:00
src = fetchFromGitHub {
owner = "mautrix";
repo = "facebook";
rev = "v${version}";
hash = "sha256-MlT8jNUpJMgaUO9ZIYjpv8l3evdFjfEOSvdAdSlOUvg=";
2021-09-03 16:28:48 +00:00
};
propagatedBuildInputs = with python3.pkgs; [
commonmark
2021-09-03 16:28:48 +00:00
aiohttp
asyncpg
commonmark
2021-09-03 16:28:48 +00:00
mautrix
paho-mqtt
pillow
prometheus-client
pycryptodome
python-olm
python-magic
ruamel-yaml
2021-09-03 16:28:48 +00:00
unpaddedbase64
yarl
zstandard
] ++ lib.optional enableSystemd systemd;
2021-09-03 16:28:48 +00:00
postPatch = ''
# Drop version limiting so that every dependency update doesn't break this package.
sed -i -e 's/,<.*//' requirements.txt
'';
2021-09-03 16:28:48 +00: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 00:14:02 +00:00
checkPhase = ''
$out/bin/mautrix-facebook --help
'';
2021-09-03 16:28:48 +00:00
meta = with lib; {
homepage = "https://github.com/mautrix/facebook";
changelog = "https://github.com/mautrix/facebook/releases/tag/v${version}";
2021-09-03 16:28:48 +00:00
description = "A Matrix-Facebook Messenger puppeting bridge";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ kevincox ];
};
}