teams/flyingcircus: handle team with external membership (#478808)

This commit is contained in:
Wolfgang Walther
2026-01-12 19:31:38 +00:00
committed by GitHub
25 changed files with 66 additions and 53 deletions
@@ -24,7 +24,7 @@ buildPgrxExtension {
passthru.tests = nixosTests.postgresql.anonymizer.passthru.override postgresql;
meta = {
inherit (pg-dump-anon.meta) homepage teams license;
inherit (pg-dump-anon.meta) homepage maintainers license;
description = "Extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database";
};
}
@@ -68,7 +68,10 @@ buildPgrxExtension (finalAttrs: {
# Upstream removed support for PostgreSQL 13 on 0.9.0: https://github.com/timescale/pgvectorscale/releases/tag/0.9.0
broken = lib.versionOlder postgresql.version "14";
homepage = "https://github.com/timescale/pgvectorscale";
teams = [ lib.teams.flyingcircus ];
maintainers = [
lib.maintainers.leona
lib.maintainers.osnyx
];
description = "Complement to pgvector for high performance, cost efficient vector search on large workloads";
license = lib.licenses.postgresql;
platforms = postgresql.meta.platforms;