From f8a2d156f8c74d893a8a5b2859345b9cd9171a00 Mon Sep 17 00:00:00 2001 From: Simon Pinches Date: Fri, 7 Jun 2024 11:23:25 +0200 Subject: [PATCH] adding easyconfigs: xarray-2024.5.0-iimkl-2023b.eb --- .../x/xarray/xarray-2024.5.0-iimkl-2023b.eb | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 easybuild/easyconfigs/x/xarray/xarray-2024.5.0-iimkl-2023b.eb diff --git a/easybuild/easyconfigs/x/xarray/xarray-2024.5.0-iimkl-2023b.eb b/easybuild/easyconfigs/x/xarray/xarray-2024.5.0-iimkl-2023b.eb new file mode 100644 index 00000000000..a307b1a09f1 --- /dev/null +++ b/easybuild/easyconfigs/x/xarray/xarray-2024.5.0-iimkl-2023b.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonBundle' + +name = 'xarray' +version = '2024.5.0' + +homepage = 'https://github.com/pydata/xarray' +description = """xarray (formerly xray) is an open source project and Python package that aims to bring + the labeled data power of pandas to the physical sciences, by providing N-dimensional variants of the + core pandas data structures.""" + +toolchain = {'name': 'iimkl', 'version': '2023b'} + +dependencies = [ + ('Python', '3.11.5'), + ('SciPy-bundle', '2023.12'), +] + +use_pip = True +sanity_pip_check = True + +exts_list = [ + (name, version, { + 'preinstallopts': """sed -i 's/^dynamic = .*version.*/version = "%(version)s"/g' pyproject.toml && """, + 'checksums': ['e0eb1cb265f265126795f388ed9591f3c752f2aca491f6c0576711fd15b708f2'], + }), +] + +moduleclass = 'data'