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

78 lines
1.4 KiB
Nix
Raw Normal View History

2019-06-11 19:31:13 +01:00
{ lib, stdenv, python3, openssl
, enableSystemd ? stdenv.isLinux, nixosTests
}:
2019-01-11 14:59:03 +00:00
with python3.pkgs;
2016-01-08 14:12:00 +00:00
let
plugins = python3.pkgs.callPackage ./plugins { };
in
buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.22.0";
2016-01-08 14:12:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0dl4a5zirrjabbfibl9vj4zb16md11kqkz2v9l299gxbwwvzqc39";
2016-01-08 14:12:00 +00:00
};
patches = [
# adds an entry point for the service
./homeserver-script.patch
];
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
hiredis
] ++ 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
doCheck = !stdenv.isDarwin;
checkPhase = ''
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
'';
2016-01-08 14:12:00 +00: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; {
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
};
}