Unverified Commit 09342621 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

teams/apm: handle team with external membership (#478781)

parents 0661fc16 111c253c
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -56,16 +56,6 @@ with lib.maintainers;
    enableFeatureFreezePing = true;
  };

  apm = {
    scope = "Team for packages maintained by employees of Akademie für Pflegeberufe und Management GmbH.";
    shortName = "apm employees";
    # Edits to this list should only be done by an already existing member.
    members = [
      DutchGerman
      friedow
    ];
  };

  apparmor = {
    scope = "AppArmor-related modules, userspace tool packages and profiles";
    shortName = "apparmor";
+4 −1
Original line number Diff line number Diff line
@@ -45,6 +45,9 @@ buildPythonPackage rec {
    homepage = "https://github.com/Stranger6667/jsonschema/tree/master/crates/jsonschema-py";
    changelog = "https://github.com/Stranger6667/jsonschema/blob/python-v${version}/crates/jsonschema-py/CHANGELOG.md";
    license = lib.licenses.mit;
    teams = [ lib.teams.apm ];
    maintainers = with lib.maintainers; [
      DutchGerman
      friedow
    ];
  };
}
+4 −1
Original line number Diff line number Diff line
@@ -35,6 +35,9 @@ buildPythonPackage rec {
    homepage = "https://github.com/wilsonzlin/minify-html/tree/master/minify-html-python";
    changelog = "https://github.com/wilsonzlin/minify-html/blob/v${version}/CHANGELOG.md";
    license = lib.licenses.mit;
    teams = [ lib.teams.apm ];
    maintainers = with lib.maintainers; [
      DutchGerman
      friedow
    ];
  };
}
+4 −1
Original line number Diff line number Diff line
@@ -37,6 +37,9 @@ buildPythonPackage {
    homepage = "https://github.com/stckme/tiptapy";
    changelog = "https://github.com/stckme/tiptapy/blob/master/CHANGELOG.rst";
    license = lib.licenses.mit;
    teams = [ lib.teams.apm ];
    maintainers = with lib.maintainers; [
      DutchGerman
      friedow
    ];
  };
}
+4 −1
Original line number Diff line number Diff line
@@ -114,6 +114,9 @@ buildPythonPackage (finalAttrs: {
    homepage = "https://weasyprint.org/";
    license = lib.licenses.bsd3;
    mainProgram = "weasyprint";
    teams = [ lib.teams.apm ];
    maintainers = with lib.maintainers; [
      DutchGerman
      friedow
    ];
  };
})
Loading