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