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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

112 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, openssl, cargo, rustPlatform, rustc
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform python3.pkgs.systemd
, nixosTests
, enableRedis ? true
, callPackage
}:
2021-09-07 15:57:29 +00:00
let
2021-09-28 23:56:20 +00:00
plugins = python3.pkgs.callPackage ./plugins { };
tools = callPackage ./tools { };
in
2021-09-28 23:56:20 +00:00
with python3.pkgs;
buildPythonApplication rec {
pname = "matrix-synapse";
version = "1.85.2";
format = "pyproject";
2016-01-08 14:12:00 +00:00
2022-10-18 16:42:42 +00:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
rev = "v${version}";
hash = "sha256-pFafBsisBPfpDnFYWcimUuBgfFVPZzLna3yHeqIBAAE=";
2016-01-08 14:12:00 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-dnno+5Ma0YNYpmj3oZ5UG22uAanKwVT67BwQW+mHoFc=";
};
postPatch = ''
# Remove setuptools_rust from runtime dependencies
# https://github.com/matrix-org/synapse/blob/v1.69.0/pyproject.toml#L177-L185
sed -i '/^setuptools_rust =/d' pyproject.toml
'';
nativeBuildInputs = [
poetry-core
rustPlatform.cargoSetupHook
setuptools-rust
cargo
rustc
];
buildInputs = [ openssl ];
propagatedBuildInputs = [
2021-05-25 18:08:42 +00:00
authlib
bcrypt
bleach
canonicaljson
daemonize
2021-05-25 18:08:42 +00:00
ijson
immutabledict
jinja2
jsonschema
lxml
2022-01-18 14:42:33 +00:00
matrix-common
msgpack
netaddr
phonenumbers
pillow
prometheus-client
psutil
psycopg2
pyasn1
2022-08-31 13:59:46 +00:00
pydantic
pyicu
pymacaroons
pynacl
pyopenssl
pysaml2
pyyaml
requests
2021-05-25 18:08:42 +00:00
setuptools
signedjson
sortedcontainers
treq
twisted
typing-extensions
2021-05-25 18:08:42 +00:00
unpaddedbase64
] ++ lib.optional enableSystemd systemd
++ lib.optionals enableRedis [ hiredis txredisapi ];
2016-01-08 14:12:00 +00:00
nativeCheckInputs = [ mock parameterized openssl ];
2016-01-08 14:12:00 +00:00
doCheck = !stdenv.isDarwin;
checkPhase = let testFlags = lib.optionalString (!stdenv.isAarch64) "-j $NIX_BUILD_CORES"; in ''
runHook preCheck
# remove src module, so tests use the installed module instead
rm -rf ./synapse
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial ${testFlags} tests
runHook postCheck
'';
2016-01-08 14:12:00 +00:00
passthru.tests = { inherit (nixosTests) matrix-synapse; };
passthru.plugins = plugins;
passthru.tools = tools;
2021-09-28 23:56:20 +00:00
passthru.python = python3;
meta = with lib; {
homepage = "https://matrix.org";
2016-01-08 14:12:00 +00:00
description = "Matrix reference homeserver";
2016-06-22 18:16:28 +00:00
license = licenses.asl20;
2020-06-12 01:05:26 +00:00
maintainers = teams.matrix.members;
2016-01-08 14:12:00 +00:00
};
}