diff --git a/easybuild/easyconfigs/p/Python/Python-3.10.4-GCCcore-11.3.0-bare.eb b/easybuild/easyconfigs/p/Python/Python-3.10.4-GCCcore-11.3.0-bare.eb new file mode 100644 index 00000000000..c1e834e461b --- /dev/null +++ b/easybuild/easyconfigs/p/Python/Python-3.10.4-GCCcore-11.3.0-bare.eb @@ -0,0 +1,35 @@ +name = 'Python' +version = '3.10.4' +versionsuffix = '-bare' + +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': '11.3.0'} +toolchainopts = {'pic': True} + +source_urls = ['https://www.python.org/ftp/%(namelower)s/%(version)s/'] +sources = [SOURCE_TGZ] +checksums = ['f3bcc65b1d5f1dc78675c746c98fcee823c038168fc629c5935b044d0911ad28'] + +builddependencies = [ + ('UnZip', '6.0'), + ('pkgconf', '1.8.0'), +] + +dependencies = [ + ('binutils', '2.38'), + ('bzip2', '1.0.8'), # required for bz2 package in Python stdlib + ('zlib', '1.2.12'), + ('libreadline', '8.1.2'), + ('ncurses', '6.3'), + ('SQLite', '3.38.3'), + ('XZ', '5.2.5'), + ('libffi', '3.4.2'), + ('OpenSSL', '1.1', '', True), +] + +install_pip = True + +moduleclass = 'lang'