A hellbox job that works with digital signature tables.
InsertDummyDsig adds a valid digital signature table to an OTF/TTF font file.
from hellbox import Hellbox
from hellbox.jobs.dsig import InsertDummyDsig
with Hellbox("build") as task:
source = task.read("./source/*.otf")
source >> InsertDummyDsig() >> task.write("./build/otf")hell add hellbox-dsiguv sync
uv run pytest