Merge pull request #217259 from SuperSandro2000/matrix-pam

This commit is contained in:
Sandro 2023-03-01 00:39:50 +01:00 committed by GitHub
commit 631d5a4d5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
{ lib, buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
buildPythonPackage rec {
pname = "matrix-synapse-pam";
@ -12,4 +12,16 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ twisted python-pam ];
# has no tests
doCheck = false;
pythonImportsCheck = [ "pam_auth_provider" ];
meta = with lib; {
description = "PAM auth provider for the Synapse Matrix server";
homepage = "https://github.com/14mRh4X0r/matrix-synapse-pam";
license = licenses.eupl12;
maintainers = with maintainers; [ ];
};
}