h5netcdf-1.7.3-foss-2025b.eb 674 B

12345678910111213141516171819202122232425
  1. easyblock = 'PythonBundle'
  2. name = 'h5netcdf'
  3. version = '1.7.3'
  4. homepage = 'https://h5netcdf.org/'
  5. description = """A Python interface for the netCDF4 file-format that reads and writes local or
  6. remote HDF5 files directly via h5py or h5pyd, without relying on the Unidata
  7. netCDF library."""
  8. toolchain = {'name': 'foss', 'version': '2025b'}
  9. dependencies = [
  10. ('Python', '3.13.5'),
  11. ('h5py', '3.14.0'),
  12. ]
  13. exts_list = [
  14. (name, version, {
  15. 'preinstallopts': """sed -i 's/^dynamic = .*/version = "%(version)s"/g' pyproject.toml && """,
  16. 'checksums': ['f62a0e77d1e2a6cd8b9d8120d5b62b6a015dc7c6185768a01e983c77c0b794e3'],
  17. }),
  18. ]
  19. moduleclass = 'data'