mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
adddf5492b
This version is needed for compatibility with 1.0.0 and the new v4 rooms. Also, enable systemd support based on host OS.
88 lines
1.8 KiB
Nix
88 lines
1.8 KiB
Nix
{ lib, stdenv, python3
|
|
, enableSystemd ? stdenv.isLinux
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
let
|
|
matrix-synapse-ldap3 = buildPythonPackage rec {
|
|
pname = "matrix-synapse-ldap3";
|
|
version = "0.1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0a0d1y9yi0abdkv6chbmxr3vk36gynnqzrjhbg26q4zg06lh9kgn";
|
|
};
|
|
|
|
propagatedBuildInputs = [ service-identity ldap3 twisted ];
|
|
|
|
# ldaptor is not ready for py3 yet
|
|
doCheck = !isPy3k;
|
|
checkInputs = [ ldaptor mock ];
|
|
};
|
|
|
|
in buildPythonApplication rec {
|
|
pname = "matrix-synapse";
|
|
version = "0.99.5.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "17iyy6hq6m0mcb5r8zwzw90qqfn6w4b9l87snlfrry8gzwjjwncz";
|
|
};
|
|
|
|
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;
|
|
|
|
checkInputs = [ mock parameterized ];
|
|
|
|
checkPhase = ''
|
|
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://matrix.org;
|
|
description = "Matrix reference homeserver";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ralith roblabla ekleog pacien ];
|
|
};
|
|
}
|