mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 12:27:34 +00:00
matrix-synapse-plugins.matrix-synapse-shared-secret-auth: init at 1.0.2 (#112671)
This commit is contained in:
parent
7fcc4a8a84
commit
ad44060f56
@ -3,4 +3,5 @@
|
||||
{
|
||||
matrix-synapse-ldap3 = callPackage ./ldap3.nix { };
|
||||
matrix-synapse-pam = callPackage ./pam.nix { };
|
||||
matrix-synapse-shared-secret-auth = callPackage ./shared-secret-auth.nix { };
|
||||
}
|
||||
|
18
pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
Normal file
18
pkgs/servers/matrix-synapse/plugins/shared-secret-auth.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ buildPythonPackage, fetchFromGitHub, twisted }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "matrix-synapse-shared-secret-auth";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "devture";
|
||||
repo = "matrix-synapse-shared-secret-auth";
|
||||
rev = version;
|
||||
sha256 = "0cnxp3bp8mmk01a0g3lzgvaawyywjg754j4nb9iwkmm3c2nqvnpz";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "shared_secret_authenticator" ];
|
||||
|
||||
propagatedBuildInputs = [ twisted ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user