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
This commit is contained in:
ajs124 2022-02-08 23:49:32 +01:00 committed by GitHub
commit da1f104c30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];
};
}