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

88 lines
1.8 KiB
Nix
Raw Normal View History

2019-01-11 14:59:03 +00:00
{ lib, stdenv, python3
, enableSystemd ? true
}:
2019-01-11 14:59:03 +00:00
with python3.pkgs;
2016-01-08 14:12:00 +00:00
let
matrix-synapse-ldap3 = buildPythonPackage rec {
2018-01-07 09:20:58 +00:00
pname = "matrix-synapse-ldap3";
version = "0.1.3";
2016-12-20 03:50:10 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0a0d1y9yi0abdkv6chbmxr3vk36gynnqzrjhbg26q4zg06lh9kgn";
2016-12-20 03:50:10 +00:00
};
propagatedBuildInputs = [ service-identity ldap3 twisted ];
2018-01-07 09:20:58 +00:00
# ldaptor is not ready for py3 yet
doCheck = !isPy3k;
checkInputs = [ ldaptor mock ];
2016-12-20 03:50:10 +00:00
};
in buildPythonApplication rec {
pname = "matrix-synapse";
2019-03-01 19:34:57 +00:00
version = "0.99.2";
2016-01-08 14:12:00 +00:00
src = fetchPypi {
inherit pname version;
2019-03-01 19:34:57 +00:00
sha256 = "0y6vic0fjx9k8178vsns0ab4ngqx8qhiyampqnil0b1biqcd68bw";
2016-01-08 14:12:00 +00:00
};
patches = [
# adds an entry point for the service
./homeserver-script.patch
];
propagatedBuildInputs = [
bcrypt
bleach
canonicaljson
daemonize
frozendict
jinja2
jsonschema
lxml
matrix-synapse-ldap3
msgpack
netaddr
phonenumbers
pillow
(prometheus_client.overrideAttrs (x: {
src = fetchPypi {
pname = "prometheus_client";
version = "0.3.1";
sha256 = "093yhvz7lxl7irnmsfdnf2030lkj4gsfkg6pcmy4yr1ijk029g0p";
};
}))
psutil
psycopg2
pyasn1
pymacaroons
pynacl
pyopenssl
pysaml2
pyyaml
requests
signedjson
sortedcontainers
treq
twisted
unpaddedbase64
] ++ lib.optional enableSystemd systemd;
2016-01-08 14:12:00 +00:00
2019-02-16 08:39:53 +00:00
checkInputs = [ mock parameterized ];
2016-01-08 14:12:00 +00:00
checkPhase = ''
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
'';
2016-01-08 14:12:00 +00:00
2016-06-22 18:16:28 +00:00
meta = with stdenv.lib; {
2016-01-08 14:12:00 +00:00
homepage = https://matrix.org;
description = "Matrix reference homeserver";
2016-06-22 18:16:28 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ ralith roblabla ekleog pacien ];
2016-01-08 14:12:00 +00:00
};
}