nixpkgs/pkgs/servers/matrix-synapse/default.nix

85 lines
1.7 KiB
Nix
Raw Normal View History

2019-06-11 20:31:13 +02:00
{ lib, stdenv, python3, openssl
, enableSystemd ? stdenv.isLinux, nixosTests
, enableRedis ? false
, callPackage
}:
2019-01-11 15:59:03 +01:00
with python3.pkgs;
2016-01-08 15:12:00 +01:00
let
plugins = python3.pkgs.callPackage ./plugins { };
tools = callPackage ./tools { };
in
buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.34.0";
2016-01-08 15:12:00 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-lXVJfhcH9lKOCHn5f4Lc/OjgEYa5IpauKRhBsFXNWLw=";
2016-01-08 15:12:00 +01:00
};
patches = [
# adds an entry point for the service
./homeserver-script.patch
];
buildInputs = [ openssl ];
propagatedBuildInputs = [
setuptools
bcrypt
bleach
canonicaljson
daemonize
frozendict
jinja2
jsonschema
lxml
msgpack
netaddr
phonenumbers
pillow
prometheus_client
psutil
psycopg2
pyasn1
pymacaroons
pynacl
pyopenssl
pysaml2
pyyaml
requests
signedjson
sortedcontainers
treq
twisted
unpaddedbase64
typing-extensions
authlib
pyjwt
] ++ 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
doCheck = !stdenv.isDarwin;
checkPhase = ''
${lib.optionalString (!enableRedis) "rm -r tests/replication # these tests need the optional dependency 'hiredis'"}
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
'';
2016-01-08 15:12:00 +01:00
passthru.tests = { inherit (nixosTests) matrix-synapse; };
passthru.plugins = plugins;
passthru.tools = tools;
passthru.python = python3;
meta = with lib; {
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
};
}