2019-06-11 19:31:13 +01:00
|
|
|
{ lib, stdenv, python3, openssl
|
2019-12-19 13:30:50 +00:00
|
|
|
, enableSystemd ? stdenv.isLinux, nixosTests
|
2018-11-01 16:48:40 +00:00
|
|
|
}:
|
2018-10-19 05:34:22 +01:00
|
|
|
|
2019-01-11 14:59:03 +00:00
|
|
|
with python3.pkgs;
|
2018-10-19 05:34:22 +01:00
|
|
|
|
2016-01-08 14:12:00 +00:00
|
|
|
let
|
2018-10-19 05:34:22 +01:00
|
|
|
matrix-synapse-ldap3 = buildPythonPackage rec {
|
2018-01-07 09:20:58 +00:00
|
|
|
pname = "matrix-synapse-ldap3";
|
2019-12-14 01:40:13 +00:00
|
|
|
version = "0.1.4";
|
2016-12-20 03:50:10 +00:00
|
|
|
|
2018-10-19 05:34:22 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-14 01:40:13 +00:00
|
|
|
sha256 = "01bms89sl16nyh9f141idsz4mnhxvjrc3gj721wxh1fhikps0djx";
|
2016-12-20 03:50:10 +00:00
|
|
|
};
|
|
|
|
|
2018-10-19 05:34:22 +01:00
|
|
|
propagatedBuildInputs = [ service-identity ldap3 twisted ];
|
2018-01-07 09:20:58 +00:00
|
|
|
|
2018-10-19 05:34:22 +01:00
|
|
|
# ldaptor is not ready for py3 yet
|
|
|
|
doCheck = !isPy3k;
|
|
|
|
checkInputs = [ ldaptor mock ];
|
2016-12-20 03:50:10 +00:00
|
|
|
};
|
2018-10-19 05:34:22 +01:00
|
|
|
|
|
|
|
in buildPythonApplication rec {
|
|
|
|
pname = "matrix-synapse";
|
2020-01-28 16:57:16 +00:00
|
|
|
version = "1.9.1";
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2018-10-19 05:34:22 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-01-28 16:57:16 +00:00
|
|
|
sha256 = "13csf18dchm75vw251a7h57diag94vw6rhg8kkkbpi35cibn0cz2";
|
2016-01-08 14:12:00 +00:00
|
|
|
};
|
|
|
|
|
2019-02-23 19:57:20 +00:00
|
|
|
patches = [
|
|
|
|
# adds an entry point for the service
|
|
|
|
./homeserver-script.patch
|
|
|
|
];
|
|
|
|
|
2018-10-19 05:34:22 +01:00
|
|
|
propagatedBuildInputs = [
|
2019-09-10 15:33:48 +01:00
|
|
|
setuptools
|
2018-11-01 16:48:40 +00:00
|
|
|
bcrypt
|
|
|
|
bleach
|
|
|
|
canonicaljson
|
|
|
|
daemonize
|
|
|
|
frozendict
|
|
|
|
jinja2
|
|
|
|
jsonschema
|
|
|
|
lxml
|
|
|
|
matrix-synapse-ldap3
|
2019-02-06 09:44:24 +00:00
|
|
|
msgpack
|
2018-11-01 16:48:40 +00:00
|
|
|
netaddr
|
|
|
|
phonenumbers
|
|
|
|
pillow
|
2018-12-21 13:49:25 +00:00
|
|
|
(prometheus_client.overrideAttrs (x: {
|
|
|
|
src = fetchPypi {
|
|
|
|
pname = "prometheus_client";
|
|
|
|
version = "0.3.1";
|
|
|
|
sha256 = "093yhvz7lxl7irnmsfdnf2030lkj4gsfkg6pcmy4yr1ijk029g0p";
|
|
|
|
};
|
|
|
|
}))
|
2018-11-01 16:48:40 +00:00
|
|
|
psutil
|
|
|
|
psycopg2
|
|
|
|
pyasn1
|
2019-02-06 09:44:24 +00:00
|
|
|
pymacaroons
|
2018-11-01 16:48:40 +00:00
|
|
|
pynacl
|
|
|
|
pyopenssl
|
|
|
|
pysaml2
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
signedjson
|
|
|
|
sortedcontainers
|
|
|
|
treq
|
|
|
|
twisted
|
|
|
|
unpaddedbase64
|
2019-10-29 17:23:41 +00:00
|
|
|
typing-extensions
|
2018-11-01 16:48:40 +00:00
|
|
|
] ++ 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
|
|
|
|
2019-10-18 21:03:51 +01:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2019-12-19 13:30:50 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) matrix-synapse; };
|
|
|
|
|
2019-01-11 09:33:07 +00:00
|
|
|
checkPhase = ''
|
2019-02-15 09:08:27 +00:00
|
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
|
2019-01-11 09:33:07 +00:00
|
|
|
'';
|
2016-01-08 14:12:00 +00:00
|
|
|
|
2016-06-22 19:16:28 +01:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-08 14:12:00 +00:00
|
|
|
homepage = https://matrix.org;
|
|
|
|
description = "Matrix reference homeserver";
|
2016-06-22 19:16:28 +01:00
|
|
|
license = licenses.asl20;
|
2019-10-05 15:53:33 +01:00
|
|
|
maintainers = with maintainers; [ ralith roblabla ekleog pacien ma27 ];
|
2016-01-08 14:12:00 +00:00
|
|
|
};
|
|
|
|
}
|