nixpkgs/pkgs/servers/matrix-synapse/plugins/pam.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

27 lines
685 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
buildPythonPackage rec {
pname = "matrix-synapse-pam";
version = "0.1.3";
src = fetchFromGitHub {
owner = "14mRh4X0r";
repo = "matrix-synapse-pam";
rev = "v${version}";
sha256 = "0jgz49cwiyih5cg3hr4byva04zjnq8aj7rima9874la9fc5sd2wf";
};
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 = [ ];
};
}