internal/rosa/python: install mako from source
All checks were successful
Test / Create distribution (push) Successful in 1m6s
Test / Sandbox (push) Successful in 2m53s
Test / Hakurei (push) Successful in 3m59s
Test / ShareFS (push) Successful in 3m55s
Test / Sandbox (race detector) (push) Successful in 5m14s
Test / Hakurei (race detector) (push) Successful in 6m30s
Test / Flake checks (push) Successful in 2m28s

Required by mesa.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-04-20 01:55:23 +09:00
parent 4648f98272
commit b9bf69cfce

View File

@@ -557,14 +557,24 @@ func init() {
} }
func init() { func init() {
artifactsM[PythonMako] = newPypi( const (
version = "1.3.11"
checksum = "HbNreFhqmvmplmIa6h5TVnkwYYlPnsxBzkTXEA-esyx04GzybjTb7OU8Go07Kfyz"
)
artifactsM[PythonMako] = newPythonPackage(
"mako", 3915, "mako", 3915,
"a template library written in Python", "a template library written in Python",
"1.3.11", "py3", "none", "any", "https://www.makotemplates.org/",
"WJ_hxYI-nNiuDiM6QhfAG84uO5U-M2aneB0JS9AQ2J2Oi6YXAbBxIdOeOEng6CoS", version, newFromGitHub(
"sqlalchemy/mako",
"rel_"+strings.Join(strings.SplitN(version, ".", 3), "_"),
checksum,
), nil, nil, P{PythonSetuptools},
PythonMarkupSafe, PythonMarkupSafe,
) )
}
func init() {
artifactsM[PythonPyYAML] = newPypi( artifactsM[PythonPyYAML] = newPypi(
"pyyaml", 4123, "pyyaml", 4123,
"a YAML parser and emitter for Python", "a YAML parser and emitter for Python",