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

48 lines
1.4 KiB
Nix
Raw Normal View History

2016-06-15 03:50:08 +03:00
{ lib, pkgs, stdenv, buildPythonApplication, pythonPackages, fetchurl, fetchFromGitHub }:
2016-01-08 17:12:00 +03:00
let
matrix-angular-sdk = buildPythonApplication rec {
2016-01-08 17:12:00 +03:00
name = "matrix-angular-sdk-${version}";
version = "0.6.8";
2016-01-08 17:12:00 +03:00
src = fetchurl {
url = "mirror://pypi/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz";
sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2";
2016-01-08 17:12:00 +03:00
};
};
in
buildPythonApplication rec {
2016-01-08 17:12:00 +03:00
name = "matrix-synapse-${version}";
2016-09-12 12:45:53 +03:00
version = "0.17.2";
2016-01-08 17:12:00 +03:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
2016-06-15 03:50:08 +03:00
rev = "v${version}";
2016-09-12 12:45:53 +03:00
sha256 = "0171pp7phizg5j78i1srkx2hj4fqi0qn66sn6x4gshv9grncjsgw";
2016-01-08 17:12:00 +03:00
};
patches = [ ./matrix-synapse.patch ];
propagatedBuildInputs = with pythonPackages; [
blist canonicaljson daemonize dateutil frozendict pillow pybcrypt pyasn1
pydenticon pymacaroons-pynacl pynacl pyopenssl pysaml2 pytz requests2
2016-01-22 16:26:34 +03:00
service-identity signedjson systemd twisted ujson unpaddedbase64 pyyaml
matrix-angular-sdk bleach netaddr jinja2 psycopg2 python.modules.curses
ldap3 psutil
2016-01-08 17:12:00 +03:00
];
# Checks fail because of Tox.
doCheck = false;
buildInputs = with pythonPackages; [
mock setuptoolsTrial
];
2016-06-22 21:16:28 +03:00
meta = with stdenv.lib; {
2016-01-08 17:12:00 +03:00
homepage = https://matrix.org;
description = "Matrix reference homeserver";
2016-06-22 21:16:28 +03:00
license = licenses.asl20;
maintainers = [ maintainers.ralith maintainers.roblabla ];
2016-01-08 17:12:00 +03:00
};
}