mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

modified: p/PETSc/PETSc-3.19.2-foss-2022b.eb modified: p/Perl/Perl-5.34.1-GCCcore-11.3.0.eb modified: p/Python/Python-3.11.3-GCCcore-12.3.0-test.eb modified: p/Python/Python-3.11.5-GCCcore-13.2.0-Qiskit.eb modified: p/Python/Python-3.11.5-GCCcore-13.2.0-TB2J.eb modified: p/Python/Python-3.11.5-GCCcore-13.2.0.eb modified: q/Qt6/Qt6-6.5.3-GCCcore-12.2.0.eb modified: q/Qt6/Qt6-6.6.0-GCCcore-12.2.0.eb modified: q/Qt6/Qt6-6.6.3-GCCcore-13.2.0.eb
62 lines
1.6 KiB
Plaintext
62 lines
1.6 KiB
Plaintext
# IT4Innovations
|
|
# LK 2023
|
|
|
|
name = 'Python'
|
|
version = '3.11.3'
|
|
versionsuffix = '-test'
|
|
|
|
homepage = 'https://python.org/'
|
|
description = """Python is a programming language that lets you work more quickly and integrate your systems
|
|
more effectively."""
|
|
|
|
toolchain = {'name': 'GCCcore', 'version': '12.3.0'}
|
|
toolchainopts = {'pic': True}
|
|
|
|
source_urls = ['https://www.python.org/ftp/%(namelower)s/%(version)s/']
|
|
sources = [SOURCE_TGZ]
|
|
checksums = ['1a79f3df32265d9e6625f1a0b31c28eb1594df911403d11f3320ee1da1b3e048']
|
|
|
|
builddependencies = [
|
|
('UnZip', '6.0'),
|
|
('pkgconf', '1.9.5'),
|
|
]
|
|
|
|
dependencies = [
|
|
('binutils', '2.40'),
|
|
('bzip2', '1.0.8'), # required for bz2 package in Python stdlib
|
|
('zlib', '1.2.13'),
|
|
('libreadline', '8.2'),
|
|
('ncurses', '6.4'),
|
|
('SQLite', '3.42.0'),
|
|
('XZ', '5.4.2'),
|
|
('libffi', '3.4.4'),
|
|
]
|
|
|
|
install_pip = True
|
|
|
|
exts_default_options = {
|
|
'download_dep_fail': True,
|
|
'sanity_pip_check': True,
|
|
'source_urls': [PYPI_SOURCE],
|
|
'use_pip': True,
|
|
}
|
|
|
|
# order is important!
|
|
# package versions updated 2023-05-17
|
|
exts_list = [
|
|
('flit_core', '3.9.0', {
|
|
'checksums': ['72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba'],
|
|
}),
|
|
('wheel', '0.40.0', {
|
|
'checksums': ['cd1196f3faee2b31968d626e1731c94f99cbdb67cf5a46e4f5656cbee7738873'],
|
|
}),
|
|
('setuptools', '67.7.2', {
|
|
'checksums': ['f104fa03692a2602fa0fec6c6a9e63b6c8a968de13e17c026957dd1f53d80990'],
|
|
}),
|
|
('pip', '23.1.2', {
|
|
'checksums': ['0e7c86f486935893c708287b30bd050a36ac827ec7fe5e43fe7cb198dd835fba'],
|
|
}),
|
|
]
|
|
|
|
moduleclass = 'lang'
|