2023-05-12 14:17:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, python3, openssl, cargo, rustPlatform, rustc
|
2023-01-24 08:44:36 +00:00
|
|
|
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
|
2022-09-21 07:04:52 +00:00
|
|
|
, nixosTests
|
2021-10-01 21:41:06 +00:00
|
|
|
, enableRedis ? true
|
2020-12-08 03:10:09 +00:00
|
|
|
, callPackage
|
2018-11-01 16:48:40 +00:00
|
|
|
}:
|
2018-10-19 04:34:22 +00:00
|
|
|
|
2021-09-07 15:57:29 +00:00
|
|
|
let
|
2021-09-28 23:56:20 +00:00
|
|
|
plugins = python3.pkgs.callPackage ./plugins { };
|
2020-12-08 03:10:09 +00:00
|
|
|
tools = callPackage ./tools { };
|
2019-10-03 13:59:06 +00:00
|
|
|
in
|
2021-09-28 23:56:20 +00:00
|
|
|
with python3.pkgs;
|
2019-10-03 13:59:06 +00:00
|
|
|
buildPythonApplication rec {
|
2018-10-19 04:34:22 +00:00
|
|
|
pname = "matrix-synapse";
|
2023-06-08 15:12:25 +00:00
|
|
|
version = "1.85.2";
|
2022-09-27 15:26:53 +00:00
|
|
|
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}";
|
2023-06-08 15:12:25 +00:00
|
|
|
hash = "sha256-pFafBsisBPfpDnFYWcimUuBgfFVPZzLna3yHeqIBAAE=";
|
2016-01-08 14:12:00 +00:00
|
|
|
};
|
|
|
|
|
2022-09-27 15:26:53 +00:00
|
|
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
|
|
|
inherit src;
|
|
|
|
name = "${pname}-${version}";
|
2023-06-08 15:12:25 +00:00
|
|
|
hash = "sha256-dnno+5Ma0YNYpmj3oZ5UG22uAanKwVT67BwQW+mHoFc=";
|
2022-09-27 15:26:53 +00:00
|
|
|
};
|
|
|
|
|
2022-10-21 06:28:09 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2022-09-27 15:26:53 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
poetry-core
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
setuptools-rust
|
|
|
|
cargo
|
|
|
|
rustc
|
2023-05-12 14:17:16 +00:00
|
|
|
];
|
2022-09-27 15:26:53 +00:00
|
|
|
|
2021-05-19 13:51:52 +00:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2018-10-19 04:34:22 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-05-25 18:08:42 +00:00
|
|
|
authlib
|
2018-11-01 16:48:40 +00:00
|
|
|
bcrypt
|
|
|
|
bleach
|
|
|
|
canonicaljson
|
|
|
|
daemonize
|
2021-05-25 18:08:42 +00:00
|
|
|
ijson
|
2023-04-11 15:07:31 +00:00
|
|
|
immutabledict
|
2018-11-01 16:48:40 +00:00
|
|
|
jinja2
|
|
|
|
jsonschema
|
|
|
|
lxml
|
2022-01-18 14:42:33 +00:00
|
|
|
matrix-common
|
2019-02-06 09:44:24 +00:00
|
|
|
msgpack
|
2018-11-01 16:48:40 +00:00
|
|
|
netaddr
|
|
|
|
phonenumbers
|
|
|
|
pillow
|
2021-08-26 00:08:48 +00:00
|
|
|
prometheus-client
|
2018-11-01 16:48:40 +00:00
|
|
|
psutil
|
|
|
|
psycopg2
|
|
|
|
pyasn1
|
2022-08-31 13:59:46 +00:00
|
|
|
pydantic
|
2022-12-22 15:30:58 +00:00
|
|
|
pyicu
|
2019-02-06 09:44:24 +00:00
|
|
|
pymacaroons
|
2018-11-01 16:48:40 +00:00
|
|
|
pynacl
|
|
|
|
pyopenssl
|
|
|
|
pysaml2
|
|
|
|
pyyaml
|
|
|
|
requests
|
2021-05-25 18:08:42 +00:00
|
|
|
setuptools
|
2018-11-01 16:48:40 +00:00
|
|
|
signedjson
|
|
|
|
sortedcontainers
|
|
|
|
treq
|
|
|
|
twisted
|
2019-10-29 17:23:41 +00:00
|
|
|
typing-extensions
|
2021-05-25 18:08:42 +00:00
|
|
|
unpaddedbase64
|
2020-10-28 20:05:22 +00:00
|
|
|
] ++ lib.optional enableSystemd systemd
|
2021-06-24 21:58:18 +00:00
|
|
|
++ lib.optionals enableRedis [ hiredis txredisapi ];
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [ mock parameterized openssl ];
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2019-10-18 20:03:51 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2023-06-12 15:49:09 +00:00
|
|
|
checkPhase = let testFlags = lib.optionalString (!stdenv.isAarch64) "-j $NIX_BUILD_CORES"; in ''
|
2022-09-27 15:26:53 +00:00
|
|
|
runHook preCheck
|
|
|
|
|
|
|
|
# remove src module, so tests use the installed module instead
|
|
|
|
rm -rf ./synapse
|
|
|
|
|
2023-06-12 15:49:09 +00:00
|
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial ${testFlags} tests
|
2022-09-27 15:26:53 +00:00
|
|
|
|
|
|
|
runHook postCheck
|
2019-01-11 09:33:07 +00:00
|
|
|
'';
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2019-10-03 13:59:06 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) matrix-synapse; };
|
|
|
|
passthru.plugins = plugins;
|
2020-12-08 03:10:09 +00:00
|
|
|
passthru.tools = tools;
|
2021-09-28 23:56:20 +00:00
|
|
|
passthru.python = python3;
|
2019-10-03 13:59:06 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|