2019-06-11 11:31:13 -07:00
|
|
|
{ lib, stdenv, python3, openssl
|
2019-12-19 05:30:50 -08:00
|
|
|
, enableSystemd ? stdenv.isLinux, nixosTests
|
2020-10-28 13:05:22 -07:00
|
|
|
, enableRedis ? false
|
2020-12-07 19:10:09 -08:00
|
|
|
, callPackage
|
2018-11-01 09:48:40 -07:00
|
|
|
}:
|
2018-10-18 21:34:22 -07:00
|
|
|
|
2016-01-08 06:12:00 -08:00
|
|
|
let
|
2021-08-22 07:11:13 -07:00
|
|
|
py = python3.override {
|
|
|
|
packageOverrides = self: super: {
|
|
|
|
twisted = super.twisted.overridePythonAttrs (oldAttrs: rec {
|
|
|
|
version = "21.7.0";
|
|
|
|
src = oldAttrs.src.override {
|
|
|
|
inherit version;
|
|
|
|
extension = "tar.gz";
|
|
|
|
sha256 = "01lh225d7lfnmfx4f4kxwl3963gjc9yg8jfkn1w769v34ia55mic";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with self; oldAttrs.propagatedBuildInputs ++ [ typing-extensions ];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
plugins = py.pkgs.callPackage ./plugins { };
|
2020-12-07 19:10:09 -08:00
|
|
|
tools = callPackage ./tools { };
|
2019-10-03 06:59:06 -07:00
|
|
|
in
|
2021-08-22 07:11:13 -07:00
|
|
|
with py.pkgs; buildPythonApplication rec {
|
2018-10-18 21:34:22 -07:00
|
|
|
pname = "matrix-synapse";
|
2021-10-20 13:02:20 -07:00
|
|
|
version = "1.45.1";
|
2016-01-08 06:12:00 -08:00
|
|
|
|
2018-10-18 21:34:22 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-20 13:02:20 -07:00
|
|
|
sha256 = "sha256-8ZcZdQbNxrRy91gxKSoasu8QmdV27T7HeWIRz0bStzY=";
|
2016-01-08 06:12:00 -08:00
|
|
|
};
|
|
|
|
|
2019-02-23 11:57:20 -08:00
|
|
|
patches = [
|
2021-08-16 04:48:00 -07:00
|
|
|
./0001-setup-add-homeserver-as-console-script.patch
|
2019-02-23 11:57:20 -08:00
|
|
|
];
|
|
|
|
|
2021-05-19 06:51:52 -07:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2018-10-18 21:34:22 -07:00
|
|
|
propagatedBuildInputs = [
|
2021-05-25 11:08:42 -07:00
|
|
|
authlib
|
2018-11-01 09:48:40 -07:00
|
|
|
bcrypt
|
|
|
|
bleach
|
|
|
|
canonicaljson
|
|
|
|
daemonize
|
|
|
|
frozendict
|
2021-05-25 11:08:42 -07:00
|
|
|
ijson
|
2018-11-01 09:48:40 -07:00
|
|
|
jinja2
|
|
|
|
jsonschema
|
|
|
|
lxml
|
2019-02-06 01:44:24 -08:00
|
|
|
msgpack
|
2018-11-01 09:48:40 -07:00
|
|
|
netaddr
|
|
|
|
phonenumbers
|
|
|
|
pillow
|
2020-10-12 09:22:11 -07:00
|
|
|
prometheus_client
|
2018-11-01 09:48:40 -07:00
|
|
|
psutil
|
|
|
|
psycopg2
|
|
|
|
pyasn1
|
2021-05-25 11:08:42 -07:00
|
|
|
pyjwt
|
2019-02-06 01:44:24 -08:00
|
|
|
pymacaroons
|
2018-11-01 09:48:40 -07:00
|
|
|
pynacl
|
|
|
|
pyopenssl
|
|
|
|
pysaml2
|
|
|
|
pyyaml
|
|
|
|
requests
|
2021-05-25 11:08:42 -07:00
|
|
|
setuptools
|
2018-11-01 09:48:40 -07:00
|
|
|
signedjson
|
|
|
|
sortedcontainers
|
|
|
|
treq
|
|
|
|
twisted
|
2019-10-29 10:23:41 -07:00
|
|
|
typing-extensions
|
2021-05-25 11:08:42 -07:00
|
|
|
unpaddedbase64
|
2020-10-28 13:05:22 -07:00
|
|
|
] ++ lib.optional enableSystemd systemd
|
|
|
|
++ lib.optional enableRedis hiredis;
|
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 = ''
|
2021-09-21 04:15:22 -07:00
|
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial -j $NIX_BUILD_CORES 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;
|
2020-12-07 19:10:09 -08:00
|
|
|
passthru.tools = tools;
|
2019-10-03 06:59:06 -07:00
|
|
|
passthru.python = python3;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with 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
|
|
|
};
|
|
|
|
}
|