diff options
Diffstat (limited to 'internal/rosa/python.go')
| -rw-r--r-- | internal/rosa/python.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/internal/rosa/python.go b/internal/rosa/python.go index da50cd6a..1022e643 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -256,6 +256,24 @@ func init() { } func init() { + const ( + version = "3.12.0" + checksum = "VcTsiGiDU1aPLbjSPe38f9OjJDCLcxFz9loObJqUI1ZxDHXAaQMxBpNyLz_G1Rff" + ) + artifactsM[PythonFlitCore] = newPythonPackage( + "flit-core", 44841, + "a PEP 517 build backend for packages using Flit", + "https://flit.pypa.io/", + version, newFromGitHub( + "pypa/flit", + version, checksum, + ), nil, &PipHelper{ + Append: []string{"flit_core"}, + }, nil, + ) +} + +func init() { artifactsM[PythonPygments] = newPypi( "pygments", 3986, " a syntax highlighting package written in Python", |
