diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-13 03:11:38 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-13 03:11:38 +0900 |
| commit | e2199e1276eb85a25e24f52aff006059a859b2bf (patch) | |
| tree | 1463292e2d32674081982a4a50f503833f5a9905 /internal/rosa/python.go | |
| parent | 86eacb32089d1e3f335e82b7c073a40c13b116d2 (diff) | |
internal/rosa/python: mako artifact
This unfortunately pulls in platform-specific package.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 8013bda8..d367dc1e 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -204,4 +204,23 @@ func init() { PythonPluggy, PythonPygments, ) + + artifactsM[PythonMarkupSafe] = newPypi( + "markupsafe", 3918, + "implements a text object that escapes characters so it is safe to use in HTML and XML", + "3.0.3", "cp314", "cp314", "musllinux_1_2_"+linuxArch(), + perArch[string]{ + "amd64": "E2mo9ig_FKgTpGon_8qqviSEULwhnmxTIqd9vfyNxNpK4yofVYM7eLW_VE-LKbtO", + "arm64": "iG_hqsncOs8fA7bCaAg0x9XenXWlo9sqblyPcSG7yA9sfGLvM9KZznCpwWfOCwFC", + "riscv64": "7DI7U0M3jvr7U4uZml25GLw3m3EvMubCtNukZmss1gkVJ_DVkhV5DgX3Wt_sztbv", + }.unwrap(), + ) + + artifactsM[PythonMako] = newPypi( + "mako", 3915, + "a template library written in Python", + "1.3.10", "py3", "none", "any", + "tQ1VGLIQOYm70HuuzsOPRbFWCWYvgckSjx2rKczXHRlMIBet28XGnnPh6i1GbFUu", + PythonMarkupSafe, + ) } |
