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

99 lines
1.9 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
}:
2021-09-07 17:57:29 +02:00
let
py = python3.override {
packageOverrides = self: super: {
frozendict = super.frozendict.overridePythonAttrs (oldAttrs: rec {
version = "1.2";
src = oldAttrs.src.override {
inherit version;
sha256 = "0ibf1wipidz57giy53dh7mh68f2hz38x8f4wdq88mvxj5pr7jhbp";
};
doCheck = false;
});
};
};
in
with py.pkgs;
2016-01-08 15:12:00 +01:00
let
2021-09-07 17:57:29 +02:00
plugins = py.pkgs.callPackage ./plugins { };
tools = callPackage ./tools { };
in
buildPythonApplication rec {
pname = "matrix-synapse";
2021-09-01 16:15:53 +02:00
version = "1.42.0";
2016-01-08 15:12:00 +01:00
src = fetchPypi {
inherit pname version;
2021-09-01 16:15:53 +02:00
sha256 = "sha256-wJFjjm9apRqjk5eN/kIEgecHgm/XLbtwXHEpM2pmvO8=";
2016-01-08 15:12:00 +01:00
};
patches = [
2021-08-16 13:48:00 +02:00
./0001-setup-add-homeserver-as-console-script.patch
];
buildInputs = [ openssl ];
propagatedBuildInputs = [
2021-05-25 20:08:42 +02:00
authlib
bcrypt
bleach
canonicaljson
daemonize
frozendict
2021-05-25 20:08:42 +02:00
ijson
jinja2
jsonschema
lxml
msgpack
netaddr
phonenumbers
pillow
prometheus-client
psutil
psycopg2
pyasn1
2021-05-25 20:08:42 +02:00
pyjwt
pymacaroons
pynacl
pyopenssl
pysaml2
pyyaml
requests
2021-05-25 20:08:42 +02:00
setuptools
signedjson
sortedcontainers
treq
twisted
typing-extensions
2021-05-25 20:08:42 +02:00
unpaddedbase64
] ++ lib.optional enableSystemd systemd
++ lib.optionals enableRedis [ hiredis txredisapi ];
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 = ''
2021-09-21 13:15:22 +02:00
PYTHONPATH=".:$PYTHONPATH" ${py.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tests
'';
2016-01-08 15:12:00 +01:00
passthru.tests = { inherit (nixosTests) matrix-synapse; };
passthru.plugins = plugins;
passthru.tools = tools;
2021-09-07 17:57:29 +02:00
passthru.python = py;
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
};
}