|
root / lang / python / package.toml
package.toml TOML 27 lines 679 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Python - CPython interpreter (links the OS-provided OpenSSL 3.5)
# https://www.python.org/

[package]
name = "python"
version = "3.13.2"
release = 1
description = "Python programming language interpreter (CPython)"
url = "https://www.python.org/"
license = "PSF-2.0"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
# openssl, zlib, libffi are provided by the base system (/usr/lib).
runtime = []
build = []

[[source]]
file = "Python-3.13.2.tar.xz"
urls = ["https://www.python.org/ftp/python/3.13.2/Python-3.13.2.tar.xz"]
checksum = "d984bcc57cd67caab26f7def42e523b1c015bbc5dc07836cf4f0b63fa159eb56"
extract = true

[build]
parallel = true