1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  lib,
  python3,
  writeShellScriptBin,
}:

writeShellScriptBin "build-release-notes" ''
  exec ${lib.getExe (python3.withPackages (p: [ p.python-frontmatter ]))} \
    ${./build-release-notes.py} "$@"
''