mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
b6f3519384
https://github.com/NixOS/nixpkgs/pull/192197 broke these packages by adding systemd as a dependency. This meant that the included package was no longer the python3 systemd package, but the general systemd derivation. This broke the packages at runtime. This PR fixes that.
63 lines
1.4 KiB
Nix
63 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, python3
|
|
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
|
|
}:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "mautrix-facebook";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mautrix";
|
|
repo = "facebook";
|
|
rev = "v${version}";
|
|
hash = "sha256-MlT8jNUpJMgaUO9ZIYjpv8l3evdFjfEOSvdAdSlOUvg=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
CommonMark
|
|
aiohttp
|
|
asyncpg
|
|
mautrix
|
|
paho-mqtt
|
|
pillow
|
|
prometheus-client
|
|
pycryptodome
|
|
python-olm
|
|
python-magic
|
|
ruamel-yaml
|
|
unpaddedbase64
|
|
yarl
|
|
zstandard
|
|
] ++ lib.optional enableSystemd systemd;
|
|
|
|
postPatch = ''
|
|
# Drop version limiting so that every dependency update doesn't break this package.
|
|
sed -i -e 's/,<.*//' requirements.txt
|
|
'';
|
|
|
|
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
|
|
'';
|
|
|
|
checkPhase = ''
|
|
$out/bin/mautrix-facebook --help
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mautrix/facebook";
|
|
changelog = "https://github.com/mautrix/facebook/releases/tag/v${version}";
|
|
description = "A Matrix-Facebook Messenger puppeting bridge";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = with maintainers; [ kevincox ];
|
|
};
|
|
}
|