mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
27 lines
685 B
Nix
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 = [ ];
|
|
};
|
|
}
|