Merge pull request #217259 from SuperSandro2000/matrix-pam

authored by

Sandro and committed by
GitHub
631d5a4d 0c63bfd4

+13 -1
+13 -1
pkgs/servers/matrix-synapse/plugins/pam.nix
··· 1 - { buildPythonPackage, fetchFromGitHub, twisted, python-pam }: 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-pam"; ··· 12 }; 13 14 propagatedBuildInputs = [ twisted python-pam ]; 15 }
··· 1 + { lib, buildPythonPackage, fetchFromGitHub, twisted, python-pam }: 2 3 buildPythonPackage rec { 4 pname = "matrix-synapse-pam"; ··· 12 }; 13 14 propagatedBuildInputs = [ twisted python-pam ]; 15 + 16 + # has no tests 17 + doCheck = false; 18 + 19 + pythonImportsCheck = [ "pam_auth_provider" ]; 20 + 21 + meta = with lib; { 22 + description = "PAM auth provider for the Synapse Matrix server"; 23 + homepage = "https://github.com/14mRh4X0r/matrix-synapse-pam"; 24 + license = licenses.eupl12; 25 + maintainers = with maintainers; [ ]; 26 + }; 27 }