eccodes-python-1.1.0-foss-2021b.eb 682 B

12345678910111213141516171819202122232425262728
  1. easyblock = 'PythonPackage'
  2. name = 'eccodes-python'
  3. version = '1.1.0'
  4. homepage = 'https://github.com/ecmwf/eccodes-python'
  5. description = "Python 3 interface to decode and encode GRIB and BUFR files via the ECMWF ecCodes library."
  6. toolchain = {'name': 'foss', 'version': '2021b'}
  7. github_account = 'ecmwf'
  8. source_urls = [GITHUB_SOURCE]
  9. sources = ['%(version)s.tar.gz']
  10. checksums = ['c1b4986f2e44a1e5e37d9a38cb41ac97a4bd994edad1f8fce0342522f58b947e']
  11. dependencies = [
  12. ('Python', '3.9.6'),
  13. ('SciPy-bundle', '2020.11'),
  14. ('ecCodes', '2.24.2'),
  15. ]
  16. use_pip = True
  17. download_dep_fail = True
  18. sanity_pip_check = True
  19. options = {'modulename': 'eccodes'}
  20. moduleclass = 'tools'