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

99 lines
2.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, python2
, enableSystemd ? true
}:
with python2.pkgs;
2016-01-08 14:12:00 +00:00
let
matrix-angular-sdk = buildPythonPackage rec {
pname = "matrix-angular-sdk";
version = "0.6.8";
2016-01-08 14:12:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2";
2016-01-08 14:12:00 +00:00
};
# no checks from Pypi but as this is abandonware, there will be no
# new version anyway
doCheck = false;
2016-01-08 14:12:00 +00:00
};
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";
2018-11-23 20:09:24 +00:00
version = "0.33.9";
2016-01-08 14:12:00 +00:00
src = fetchPypi {
inherit pname version;
2018-11-23 20:09:24 +00:00
sha256 = "1wdpywqi1xd6dy3hxnnjnh2amlmhljf8s0bff9v55jyh42bj1vpn";
2016-01-08 14:12:00 +00:00
};
patches = [
./matrix-synapse.patch
];
2016-01-08 14:12:00 +00:00
propagatedBuildInputs = [
bcrypt
bleach
canonicaljson
daemonize
dateutil
frozendict
jinja2
jsonschema
lxml
matrix-angular-sdk
matrix-synapse-ldap3
msgpack-python
netaddr
phonenumbers
pillow
prometheus_client
psutil
psycopg2
pyasn1
pydenticon
pymacaroons-pynacl
pynacl
pyopenssl
pysaml2
pyyaml
requests
signedjson
sortedcontainers
treq
twisted
unpaddedbase64
] ++ lib.optional enableSystemd systemd;
2016-01-08 14:12:00 +00:00
# tests fail under py3 for now, but version 0.34.0 will use py3 by default
# https://github.com/matrix-org/synapse/issues/4036
doCheck = true;
checkPhase = "python -m twisted.trial test";
2016-01-08 14:12:00 +00:00
checkInputs = [ mock setuptoolsTrial ];
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;
2018-07-21 12:45:48 +00:00
maintainers = with maintainers; [ ralith roblabla ekleog ];
2016-01-08 14:12:00 +00:00
};
}