2018-08-08 00:39:18 +02:00
|
|
|
{ stdenv, python2Packages, fetchurl, fetchFromGitHub }:
|
2016-01-08 15:12:00 +01:00
|
|
|
let
|
2018-08-08 00:39:18 +02:00
|
|
|
matrix-angular-sdk = python2Packages.buildPythonPackage rec {
|
2016-01-08 15:12:00 +01:00
|
|
|
name = "matrix-angular-sdk-${version}";
|
2016-04-23 01:48:54 +02:00
|
|
|
version = "0.6.8";
|
2016-01-08 15:12:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-26 14:38:03 +02:00
|
|
|
url = "mirror://pypi/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz";
|
2016-04-23 01:48:54 +02:00
|
|
|
sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2";
|
2016-01-08 15:12:00 +01:00
|
|
|
};
|
|
|
|
};
|
2018-08-08 00:39:18 +02:00
|
|
|
matrix-synapse-ldap3 = python2Packages.buildPythonPackage rec {
|
2018-01-07 10:20:58 +01:00
|
|
|
pname = "matrix-synapse-ldap3";
|
|
|
|
version = "0.1.3";
|
2016-12-20 04:50:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = "matrix-synapse-ldap3";
|
2017-02-04 09:49:53 +01:00
|
|
|
rev = "v${version}";
|
2018-01-07 10:20:58 +01:00
|
|
|
sha256 = "0ss7ld3bpmqm8wcs64q1kb7vxlpmwk9lsgq0mh21a9izyfc7jb2l";
|
2016-12-20 04:50:10 +01:00
|
|
|
};
|
|
|
|
|
2018-08-08 00:39:18 +02:00
|
|
|
propagatedBuildInputs = with python2Packages; [ service-identity ldap3 twisted ];
|
2018-01-07 10:20:58 +01:00
|
|
|
|
2018-08-08 00:39:18 +02:00
|
|
|
checkInputs = with python2Packages; [ ldaptor mock ];
|
2016-12-20 04:50:10 +01:00
|
|
|
};
|
2018-08-08 00:39:18 +02:00
|
|
|
in python2Packages.buildPythonApplication rec {
|
2016-01-08 15:12:00 +01:00
|
|
|
name = "matrix-synapse-${version}";
|
2018-10-04 20:30:48 +02:00
|
|
|
version = "0.33.6";
|
2016-01-08 15:12:00 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "matrix-org";
|
|
|
|
repo = "synapse";
|
2016-06-15 02:50:08 +02:00
|
|
|
rev = "v${version}";
|
2018-10-04 20:30:48 +02:00
|
|
|
sha256 = "0c1dr09f1msv6xvpmdlncx7yyj6qxnpihd93lqckd115fds12g5h";
|
2016-01-08 15:12:00 +01:00
|
|
|
};
|
|
|
|
|
2018-02-19 15:56:48 +01:00
|
|
|
patches = [
|
|
|
|
./matrix-synapse.patch
|
|
|
|
];
|
2016-01-08 15:12:00 +01:00
|
|
|
|
2018-08-08 00:39:18 +02:00
|
|
|
propagatedBuildInputs = with python2Packages; [
|
2017-10-10 05:39:50 +02:00
|
|
|
blist canonicaljson daemonize dateutil frozendict pillow pyasn1
|
2017-05-07 12:55:45 +02:00
|
|
|
pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests
|
2018-06-09 11:46:24 +02:00
|
|
|
signedjson systemd twisted ujson unpaddedbase64 pyyaml prometheus_client
|
2016-10-06 20:34:35 +02:00
|
|
|
matrix-angular-sdk bleach netaddr jinja2 psycopg2
|
2018-02-10 14:15:18 +01:00
|
|
|
psutil msgpack-python lxml matrix-synapse-ldap3
|
2018-09-24 16:57:37 +02:00
|
|
|
phonenumbers jsonschema affinity bcrypt sortedcontainers treq
|
2016-01-08 15:12:00 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
# Checks fail because of Tox.
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-08-08 00:39:18 +02:00
|
|
|
buildInputs = with python2Packages; [
|
2016-01-08 15:12:00 +01:00
|
|
|
mock setuptoolsTrial
|
|
|
|
];
|
|
|
|
|
2016-06-22 20:16:28 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-01-08 15:12:00 +01:00
|
|
|
homepage = https://matrix.org;
|
|
|
|
description = "Matrix reference homeserver";
|
2016-06-22 20:16:28 +02:00
|
|
|
license = licenses.asl20;
|
2018-07-21 14:45:48 +02:00
|
|
|
maintainers = with maintainers; [ ralith roblabla ekleog ];
|
2016-01-08 15:12:00 +01:00
|
|
|
};
|
|
|
|
}
|