1
0
forked from rosa/hakurei

internal/rosa/python: install pygments from source

This finally has its dependencies.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-04-19 22:40:43 +09:00
parent 1caa051f4d
commit e903e7f542

View File

@@ -413,13 +413,22 @@ func init() {
} }
func init() { func init() {
artifactsM[PythonPygments] = newPypi( const (
version = "2.20.0"
checksum = "L-2P6vn7c_CNZYliE5CJAWLxO1ziDQVVkf8bnZbHj8aSCQ43oWv11wC9KzU9MeCa"
)
artifactsM[PythonPygments] = newPythonPackage(
"pygments", 3986, "pygments", 3986,
"a syntax highlighting package written in Python", "a syntax highlighting package written in Python",
"2.20.0", "py3", "none", "any", "https://pygments.org/",
"qlyqX2YSXcV0Z8XgGaPttc_gkq-xsu_nYs6NFOcYnk-CX7qmcj45gG-h6DpwPIcO", version, newFromGitHub(
"pygments/pygments",
version, checksum,
), nil, nil, P{PythonHatchling},
) )
}
func init() {
artifactsM[PythonIniConfig] = newPypi( artifactsM[PythonIniConfig] = newPypi(
"iniconfig", 114778, "iniconfig", 114778,
"a small and simple INI-file parser module", "a small and simple INI-file parser module",