2019-06-11 20:31:13 +02:00
|
|
|
{ lib, stdenv, python3, openssl
|
2019-12-19 14:30:50 +01:00
|
|
|
, enableSystemd ? stdenv.isLinux, nixosTests
|
2020-10-28 21:05:22 +01:00
|
|
|
, enableRedis ? false
|
2020-12-08 04:10:09 +01:00
|
|
|
, callPackage
|
2018-11-01 17:48:40 +01:00
|
|
|
}:
|
2018-10-19 06:34:22 +02:00
|
|
|
|
2019-01-11 15:59:03 +01:00
|
|
|
with python3.pkgs;
|
2018-10-19 06:34:22 +02:00
|
|
|
|
2016-01-08 15:12:00 +01:00
|
|
|
let
|
2019-10-03 15:59:06 +02:00
|
|
|
plugins = python3.pkgs.callPackage ./plugins { };
|
2020-12-08 04:10:09 +01:00
|
|
|
tools = callPackage ./tools { };
|
2019-10-03 15:59:06 +02:00
|
|
|
in
|
|
|
|
buildPythonApplication rec {
|
2018-10-19 06:34:22 +02:00
|
|
|
pname = "matrix-synapse";
|
2021-05-17 13:44:48 +02:00
|
|
|
version = "1.34.0";
|
2016-01-08 15:12:00 +01:00
|
|
|
|
2018-10-19 06:34:22 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-05-17 13:44:48 +02:00
|
|
|
sha256 = "sha256-lXVJfhcH9lKOCHn5f4Lc/OjgEYa5IpauKRhBsFXNWLw=";
|
2016-01-08 15:12:00 +01:00
|
|
|
};
|
|
|
|
|
2019-02-23 20:57:20 +01:00
|
|
|
patches = [
|
|
|
|
# adds an entry point for the service
|
|
|
|
./homeserver-script.patch
|
|
|
|
];
|
|
|
|
|
2021-05-19 15:51:52 +02:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2018-10-19 06:34:22 +02:00
|
|
|
propagatedBuildInputs = [
|
2019-09-10 16:33:48 +02:00
|
|
|
setuptools
|
2018-11-01 17:48:40 +01:00
|
|
|
bcrypt
|
|
|
|
bleach
|
|
|
|
canonicaljson
|
|
|
|
daemonize
|
|
|
|
frozendict
|
|
|
|
jinja2
|
|
|
|
jsonschema
|
|
|
|
lxml
|
2019-02-06 10:44:24 +01:00
|
|
|
msgpack
|
2018-11-01 17:48:40 +01:00
|
|
|
netaddr
|
|
|
|
phonenumbers
|
|
|
|
pillow
|
2020-10-12 18:22:11 +02:00
|
|
|
prometheus_client
|
2018-11-01 17:48:40 +01:00
|
|
|
psutil
|
|
|
|
psycopg2
|
|
|
|
pyasn1
|
2019-02-06 10:44:24 +01:00
|
|
|
pymacaroons
|
2018-11-01 17:48:40 +01:00
|
|
|
pynacl
|
|
|
|
pyopenssl
|
|
|
|
pysaml2
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
signedjson
|
|
|
|
sortedcontainers
|
|
|
|
treq
|
|
|
|
twisted
|
|
|
|
unpaddedbase64
|
2019-10-29 18:23:41 +01:00
|
|
|
typing-extensions
|
2020-05-28 20:24:53 +02:00
|
|
|
authlib
|
2020-06-12 03:02:49 +02:00
|
|
|
pyjwt
|
2020-10-28 21:05:22 +01:00
|
|
|
] ++ lib.optional enableSystemd systemd
|
|
|
|
++ lib.optional enableRedis hiredis;
|
2016-01-08 15:12:00 +01:00
|
|
|
|
2019-06-11 20:31:13 +02:00
|
|
|
checkInputs = [ mock parameterized openssl ];
|
2016-01-08 15:12:00 +01:00
|
|
|
|
2019-10-18 22:03:51 +02:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2019-01-11 10:33:07 +01:00
|
|
|
checkPhase = ''
|
2020-10-28 21:05:22 +01:00
|
|
|
${lib.optionalString (!enableRedis) "rm -r tests/replication # these tests need the optional dependency 'hiredis'"}
|
2019-02-15 10:08:27 +01:00
|
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
|
2019-01-11 10:33:07 +01:00
|
|
|
'';
|
2016-01-08 15:12:00 +01:00
|
|
|
|
2019-10-03 15:59:06 +02:00
|
|
|
passthru.tests = { inherit (nixosTests) matrix-synapse; };
|
|
|
|
passthru.plugins = plugins;
|
2020-12-08 04:10:09 +01:00
|
|
|
passthru.tools = tools;
|
2019-10-03 15:59:06 +02:00
|
|
|
passthru.python = python3;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://matrix.org";
|
2016-01-08 15:12:00 +01:00
|
|
|
description = "Matrix reference homeserver";
|
2016-06-22 20:16:28 +02:00
|
|
|
license = licenses.asl20;
|
2020-06-12 03:05:26 +02:00
|
|
|
maintainers = teams.matrix.members;
|
2016-01-08 15:12:00 +01:00
|
|
|
};
|
|
|
|
}
|