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