58dc1e2a6f
Currently, `setuptools` isn't propagated automatically to python packages[1] which causes the following error when starting `matrix-synapse`: ``` Traceback (most recent call last): File "/nix/store/xxkds7821mrahfx75az0sq3ryf69m612-matrix-synapse-1.3.1/bin/.homeserver-wrapped", line 39, in <module> import synapse.config.logger File "/nix/store/xxkds7821mrahfx75az0sq3ryf69m612-matrix-synapse-1.3.1/lib/python3.7/site-packages/synapse/config/logger.py", line 27, in <module> from synapse.app import _base as appbase File "/nix/store/xxkds7821mrahfx75az0sq3ryf69m612-matrix-synapse-1.3.1/lib/python3.7/site-packages/synapse/app/__init__.py", line 18, in <module> E402 File "/nix/store/xxkds7821mrahfx75az0sq3ryf69m612-matrix-synapse-1.3.1/lib/python3.7/site-packages/synapse/python_dependencies.py", line 19, in <module> from pkg_resources import ( No module named 'pkg_resources' ``` [1] https://github.com/NixOS/nixpkgs/pull/68314
89 lines
1.8 KiB
Nix
89 lines
1.8 KiB
Nix
{ lib, stdenv, python3, openssl
|
|
, 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 = "1.3.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1nz9bhy5hraa1h7100vr0innz8npnpha6xr9j2ln7h3cgwv73739";
|
|
};
|
|
|
|
patches = [
|
|
# adds an entry point for the service
|
|
./homeserver-script.patch
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
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 openssl ];
|
|
|
|
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 ];
|
|
};
|
|
}
|