matrix-synapse-shared-secret-auth: add sumnerevans as maintainer

This commit is contained in:
Sumner Evans 2022-01-18 07:48:45 -07:00
parent 20b338368c
commit 4091631b52
No known key found for this signature in database
GPG key ID: 8904527AB50022FD

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchFromGitHub, matrix-synapse, twisted }:
{ lib, buildPythonPackage, fetchFromGitHub, matrix-synapse, twisted }:
buildPythonPackage rec {
pname = "matrix-synapse-shared-secret-auth";
@ -16,4 +16,11 @@ buildPythonPackage rec {
buildInputs = [ matrix-synapse ];
propagatedBuildInputs = [ twisted ];
meta = with lib; {
description = "Shared Secret Authenticator password provider module for Matrix Synapse";
homepage = "https://github.com/devture/matrix-synapse-shared-secret-auth";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ sumnerevans ];
};
}