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

47 lines
1.4 KiB
Nix
Raw Normal View History

2016-06-15 00:50:08 +00:00
{ lib, pkgs, stdenv, buildPythonApplication, pythonPackages, fetchurl, fetchFromGitHub }:
2016-01-08 14:12:00 +00:00
let
matrix-angular-sdk = buildPythonApplication rec {
2016-01-08 14:12:00 +00:00
name = "matrix-angular-sdk-${version}";
version = "0.6.8";
2016-01-08 14:12:00 +00:00
src = fetchurl {
url = "mirror://pypi/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz";
sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2";
2016-01-08 14:12:00 +00:00
};
};
in
buildPythonApplication rec {
2016-01-08 14:12:00 +00:00
name = "matrix-synapse-${version}";
2016-07-08 13:05:05 +00:00
version = "0.16.1-r1";
2016-01-08 14:12:00 +00:00
src = fetchFromGitHub {
owner = "matrix-org";
repo = "synapse";
2016-06-15 00:50:08 +00:00
rev = "v${version}";
2016-07-08 13:05:05 +00:00
sha256 = "0flgaa26j9gga9a9h67b0q3yi0mpnbrjik55220cvvzhy9fnvwa9";
2016-01-08 14:12:00 +00: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 13:26:34 +00:00
service-identity signedjson systemd twisted ujson unpaddedbase64 pyyaml
2016-06-15 00:50:08 +00:00
matrix-angular-sdk bleach netaddr jinja2 psycopg2
2016-01-08 14:12:00 +00:00
];
# Checks fail because of Tox.
doCheck = false;
buildInputs = with pythonPackages; [
mock setuptoolsTrial
];
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;
maintainers = [ maintainers.ralith maintainers.roblabla ];
2016-01-08 14:12:00 +00:00
};
}