diff --git a/easybuild/easyconfigs/m/mpi4py/mpi4py-4.0.0-gompi-2024a.eb b/easybuild/easyconfigs/m/mpi4py/mpi4py-4.0.0-gompi-2024a.eb new file mode 100644 index 000000000000..277fe1bfea7b --- /dev/null +++ b/easybuild/easyconfigs/m/mpi4py/mpi4py-4.0.0-gompi-2024a.eb @@ -0,0 +1,29 @@ +easyblock = 'PythonBundle' + +name = 'mpi4py' +version = '4.0.0' + +homepage = 'https://github.com/mpi4py/mpi4py' +description = """MPI for Python (mpi4py) provides bindings of the Message Passing Interface (MPI) standard for + the Python programming language, allowing any Python program to exploit multiple processors.""" + +toolchain = {'name': 'gompi', 'version': '2024a'} + +builddependencies = [ + ('Cython', '3.0.10'), +] + +dependencies = [ + ('Python', '3.12.3'), +] + +sanity_pip_check = True +use_pip = True + +exts_list = [ + (name, version, { + 'checksums': ['820d31ae184d69c17d9b5d55b1d524d56be47d2e6cb318ea4f3e7007feff2ccc'], + }), +] + +moduleclass = 'lib'