nixpkgs/pkgs/servers/matrix-synapse/default.nix

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

113 lines
2.3 KiB
Nix
Raw Normal View History

2022-10-18 16:42:42 +00:00
{ lib, stdenv, fetchFromGitHub, python3, openssl, rustPlatform
, enableSystemd ? stdenv.isLinux, nixosTests
, enableRedis ? true
, callPackage
}:
2021-09-07 15:57:29 +00:00
let
2021-09-28 23:56:20 +00:00
plugins = python3.pkgs.callPackage ./plugins { };
tools = callPackage ./tools { };
in
2021-09-28 23:56:20 +00:00
with python3.pkgs;
buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.74.0";
format = "pyproject";
2016-01-08 14:12:00 +00:00
2022-10-18 16:42:42 +00:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
rev = "v${version}";
hash = "sha256-UsYodjykcLOgClHegqH598kPoGAI1Z8bLzV5LLE6yLg=";
2016-01-08 14:12:00 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-XOW9DRUhGIs8x5tQ9l2A85sNv736uMmfC72f8FX3g/I=";
};
postPatch = ''
# Remove setuptools_rust from runtime dependencies
# https://github.com/matrix-org/synapse/blob/v1.69.0/pyproject.toml#L177-L185
sed -i '/^setuptools_rust =/d' pyproject.toml
'';
nativeBuildInputs = [
poetry-core
rustPlatform.cargoSetupHook
setuptools-rust
] ++ (with rustPlatform.rust; [
cargo
rustc
]);
buildInputs = [ openssl ];
propagatedBuildInputs = [
2021-05-25 18:08:42 +00:00
authlib
bcrypt
bleach
canonicaljson
daemonize
frozendict
2021-05-25 18:08:42 +00:00
ijson
jinja2
jsonschema
lxml
2022-01-18 14:42:33 +00:00
matrix-common
msgpack
netaddr
phonenumbers
pillow
prometheus-client
psutil
psycopg2
pyasn1
2022-08-31 13:59:46 +00:00
pydantic
pyicu
2021-05-25 18:08:42 +00:00
pyjwt
pymacaroons
pynacl
pyopenssl
pysaml2
pyyaml
requests
2021-05-25 18:08:42 +00:00
setuptools
signedjson
sortedcontainers
treq
twisted
typing-extensions
2021-05-25 18:08:42 +00:00
unpaddedbase64
] ++ lib.optional enableSystemd systemd
++ lib.optionals enableRedis [ hiredis txredisapi ];
2016-01-08 14:12:00 +00:00
2019-06-11 18:31:13 +00:00
checkInputs = [ mock parameterized openssl ];
2016-01-08 14:12:00 +00:00
doCheck = !stdenv.isDarwin;
checkPhase = ''
runHook preCheck
# remove src module, so tests use the installed module instead
rm -rf ./synapse
2021-09-28 23:56:20 +00:00
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tests
runHook postCheck
'';
2016-01-08 14:12:00 +00:00
passthru.tests = { inherit (nixosTests) matrix-synapse; };
passthru.plugins = plugins;
passthru.tools = tools;
2021-09-28 23:56:20 +00:00
passthru.python = python3;
meta = with lib; {
homepage = "https://matrix.org";
2016-01-08 14:12:00 +00:00
description = "Matrix reference homeserver";
2016-06-22 18:16:28 +00:00
license = licenses.asl20;
2020-06-12 01:05:26 +00:00
maintainers = teams.matrix.members;
2016-01-08 14:12:00 +00:00
};
}