mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
matrix-synapse.plugins.matrix-synapse-pam: complete meta, add import check
This commit is contained in:
parent
5de1815be9
commit
935a4e0039
@ -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; [ ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user