print maintainers list

This commit is contained in:
Gaetan Lepage 2024-01-25 07:59:00 +01:00 committed by mergify[bot]
parent 6e4ee6941a
commit a566b9bdb1
2 changed files with 10 additions and 0 deletions

View File

@ -290,6 +290,14 @@ def main(args: list[str] = sys.argv[1:]) -> None:
package = update(options)
if package.maintainers:
print("Package maintainers:")
for maintainer in package.maintainers:
print(
f" - {maintainer['name']}"
+ (f" (@{maintainer['github']})" if "github" in maintainer else "")
)
if options.build:
nix_build(options)

View File

@ -47,6 +47,7 @@ class Package:
url: str | None
src_homepage: str | None
changelog: str | None
maintainers: list[dict[str, str]] | None
rev: str
hash: str | None
go_modules: str | None
@ -165,6 +166,7 @@ in {{
has_update_script = {has_update_script};
src_homepage = pkg.src.meta.homepage or null;
changelog = pkg.meta.changelog or null;
maintainers = pkg.meta.maintainers or null;
}}"""