mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
33 lines
957 B
Nix
33 lines
957 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, matrix-synapse }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "matrix-synapse-mjolnir-antispam";
|
|
version = "1.1.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matrix-org";
|
|
repo = "mjolnir";
|
|
rev = "v${version}";
|
|
sha256 = "06779z08qni1kgr292gpkxd2xvyg4apfnbhynli9qjp2vaf03wy9";
|
|
};
|
|
|
|
sourceRoot = "./source/synapse_antispam";
|
|
|
|
propagatedBuildInputs = [ matrix-synapse ];
|
|
|
|
doCheck = false; # no tests
|
|
pythonImportsCheck = [ "mjolnir" ];
|
|
|
|
meta = with lib; {
|
|
description = "AntiSpam / Banlist plugin to be used with mjolnir";
|
|
longDescription = ''
|
|
Primarily meant to block invites from undesired homeservers/users,
|
|
Mjolnir's Synapse module is a way to interpret ban lists and apply
|
|
them to your entire homeserver.
|
|
'';
|
|
homepage = "https://github.com/matrix-org/mjolnir#synapse-module";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jojosch ];
|
|
};
|
|
}
|