ESMPy-8.7.0-foss-2024a.eb 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. easyblock = 'PythonBundle'
  2. name = 'ESMPy'
  3. version = '8.7.0'
  4. homepage = 'https://earthsystemmodeling.org/esmpy'
  5. description = "Earth System Modeling Framework (ESMF) Python Interface"
  6. toolchain = {'name': 'foss', 'version': '2024a'}
  7. dependencies = [
  8. ('Python', '3.12.3'),
  9. ('SciPy-bundle', '2024.05'), # for numpy, mpi4py
  10. ('ESMF', version),
  11. ('hatchling', '1.24.2'),
  12. ]
  13. download_dep_fail = True
  14. use_pip = True
  15. sanity_pip_check = True
  16. exts_list = [
  17. ('pytest-json-report', '1.5.0', {
  18. 'modulename': 'pytest_jsonreport',
  19. 'checksums': ['2dde3c647851a19b5f3700729e8310a6e66efb2077d674f27ddea3d34dc615de'],
  20. }),
  21. ('setuptools-git-versioning', '2.0.0', {
  22. 'checksums': ['85b5fbe7bda8e9c24bbd9e587a9d4b91129417f4dd3e11e3c0d5f3f835fc4d4d'],
  23. }),
  24. ('pytest_metadata', '3.1.1', {
  25. 'checksums': ['d2a29b0355fbc03f168aa96d41ff88b1a3b44a3b02acbe491801c98a048017c8'],
  26. }),
  27. (name, version, {
  28. 'source_tmpl': 'v%(version)s.tar.gz',
  29. 'source_urls': ['https://github.com/esmf-org/esmf/archive/'],
  30. 'checksums': ['d7ab266e2af8c8b230721d4df59e61aa03c612a95cc39c07a2d5695746f21f56'],
  31. 'start_dir': 'src/addon/esmpy',
  32. 'prebuildopts': 'export ESMFMKFILE="$EBROOTESMF/lib/esmf.mk" && ',
  33. }),
  34. ]
  35. #modextrapaths = {
  36. # 'ESMFMKFILE': '../../ESMF/%(version)s-foss-2024a/lib/esmf.mk',
  37. #}
  38. moduleclass = 'geo'