summary refs log tree commit diff
path: root/pkgs/servers/matrix-synapse
diff options
context:
space:
mode:
authorajs124 <ajs124@users.noreply.github.com>2022-02-08 23:49:32 +0100
committerGitHub <noreply@github.com>2022-02-08 23:49:32 +0100
commitda1f104c3045ca55700fa5b4bc94ca6472f20484 (patch)
treea535fb0ed864f16fd5b56c0c11c35d73c573f784 /pkgs/servers/matrix-synapse
parentc5051e2b5fe9fab43a64f0e0d06b62c81a890b90 (diff)
parent4091631b52aa2a8732f2a3b0e399405320ef744b (diff)
Merge pull request #155398 from sumnerevans/matrix-synapse-shared-secret-auth-2.0.1
matrix-synapse-shared-secret-auth: 1.0.2 -> 2.0.1
Diffstat (limited to 'pkgs/servers/matrix-synapse')
-rw-r--r--pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix b/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
index 5c0dc1e2ce2be..3df7f1e5a5d47 100644
--- a/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
+++ b/pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
@@ -1,18 +1,26 @@
-{ buildPythonPackage, fetchFromGitHub, twisted }:
+{ lib, buildPythonPackage, fetchFromGitHub, matrix-synapse, twisted }:
 
 buildPythonPackage rec {
   pname = "matrix-synapse-shared-secret-auth";
-  version = "1.0.2";
+  version = "2.0.1";
 
   src = fetchFromGitHub {
     owner = "devture";
     repo = "matrix-synapse-shared-secret-auth";
     rev = version;
-    sha256 = "0cnxp3bp8mmk01a0g3lzgvaawyywjg754j4nb9iwkmm3c2nqvnpz";
+    sha256 = "sha256-kaok5IwKx97FYDrVIGAtUJfExqDln5vxEKrZda2RdzE=";
   };
 
   doCheck = false;
   pythonImportsCheck = [ "shared_secret_authenticator" ];
 
+  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 ];
+  };
 }