vscode-extensions.capatech.betacode: init at 0.1.10 (#355720)
[NixPkgs.git] / pkgs / servers / matrix-synapse / plugins / pam.nix
bloba2f0324883c009a081f4b6f72c17e20a68431217
1 { lib, buildPythonPackage, fetchFromGitHub, twisted, python-pam }:
3 buildPythonPackage rec {
4   pname = "matrix-synapse-pam";
5   version = "0.1.3";
7   src = fetchFromGitHub {
8     owner = "14mRh4X0r";
9     repo = "matrix-synapse-pam";
10     rev = "v${version}";
11     sha256 = "0jgz49cwiyih5cg3hr4byva04zjnq8aj7rima9874la9fc5sd2wf";
12   };
14   propagatedBuildInputs = [ twisted python-pam ];
16   # has no tests
17   doCheck = false;
19   pythonImportsCheck = [ "pam_auth_provider" ];
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 = [ ];
26   };