2019-06-11 18:31:13 +00:00
|
|
|
{ lib, stdenv, python3, openssl
|
2019-12-19 13:30:50 +00:00
|
|
|
, enableSystemd ? stdenv.isLinux, 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";
|
2022-08-17 07:35:57 +00:00
|
|
|
version = "1.65.0";
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2018-10-19 04:34:22 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-08-17 07:35:57 +00:00
|
|
|
sha256 = "sha256-Kn5o6RKR3mMHvACPiMvIGKmjkAwdjcw6EY6MJXKKeAE=";
|
2016-01-08 14:12:00 +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
|
|
|
|
frozendict
|
2021-05-25 18:08:42 +00:00
|
|
|
ijson
|
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
|
2021-05-25 18:08:42 +00:00
|
|
|
pyjwt
|
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
|
|
|
|
2019-06-11 18:31:13 +00:00
|
|
|
checkInputs = [ mock parameterized openssl ];
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2019-10-18 20:03:51 +00:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2019-01-11 09:33:07 +00:00
|
|
|
checkPhase = ''
|
2021-09-28 23:56:20 +00:00
|
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tests
|
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
|
|
|
};
|
|
|
|
}
|