diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-04-23 01:07:14 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-04-23 01:07:14 +0900 |
| commit | 30f130c691a1ead7aa5b727302be9e87a4e5710f (patch) | |
| tree | 11cb3c45351ee45f031f7a41f7eb5f98f6431d28 /internal | |
| parent | ceb4d260871119e73688ee99a844b79c94fa5fe6 (diff) | |
internal/rosa/python: wheel artifact
No idea why this ended up as a package.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/rosa/all.go | 1 | ||||
| -rw-r--r-- | internal/rosa/python.go | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/internal/rosa/all.go b/internal/rosa/all.go index 8dedfada..c5cce349 100644 --- a/internal/rosa/all.go +++ b/internal/rosa/all.go @@ -144,6 +144,7 @@ const ( PythonSetuptoolsSCM PythonTroveClassifiers PythonVCSVersioning + PythonWheel QEMU Rdfind Readline diff --git a/internal/rosa/python.go b/internal/rosa/python.go index 964542e8..1cb5d90f 100644 --- a/internal/rosa/python.go +++ b/internal/rosa/python.go @@ -221,6 +221,24 @@ func newPythonPackage( func init() { const ( + version = "0.47.0" + checksum = "HZ-MvkUP8mbbx2YmsRNswj_bbOCIiXckuHqL5Qbvb5NxN5DYfWnqwkGNyS7OrId0" + ) + artifactsM[PythonWheel] = newPythonPackage( + "wheel", 11428, + "the official binary distribution format for Python", + "https://peps.python.org/pep-0427/", + version, newFromGitHub( + "pypa/wheel", + version, checksum, + ), nil, &PipHelper{ + Install: true, + }, P{PythonFlitCore, PythonSetuptools}, + ) +} + +func init() { + const ( version = "82.0.1" checksum = "nznP46Tj539yqswtOrIM4nQgwLA1h-ApKX7z7ghazROCpyF5swtQGwsZoI93wkhc" ) |
