SciPy-bundle-2020.11-foss-2021b-o.eb 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. easyblock = 'PythonBundle'
  2. name = 'SciPy-bundle'
  3. version = '2020.11'
  4. homepage = 'https://python.org/'
  5. description = "Bundle of Python packages for scientific software"
  6. toolchain = {'name': 'foss', 'version': '2021b-o'}
  7. toolchainopts = {'pic': True, 'lowopt': True}
  8. builddependencies = [('hypothesis', '6.13.1')]
  9. dependencies = [
  10. ('Python', '3.8.6'),
  11. ('pybind11', '2.6.0'), # required by scipy
  12. ]
  13. use_pip = True
  14. exts_default_options = {'source_urls': [PYPI_SOURCE]}
  15. # order is important!
  16. exts_list = [
  17. ('numpy', '1.20.3', {
  18. 'sources': [SOURCE_ZIP],
  19. 'patches': [
  20. 'numpy-1.20.3_skip-ppc-long-complex-test.patch',
  21. 'numpy-1.20.3_xfail-test-nan.patch',
  22. 'numpy-1.20.3_fix-target-test-ccompiler-opt.patch',
  23. ],
  24. 'checksums': [
  25. 'e55185e51b18d788e49fe8305fd73ef4470596b33fc2c1ceb304566b99c71a69', # numpy-1.20.3.zip
  26. # numpy-1.20.3_skip-ppc-long-complex-test.patch
  27. '2f9a12e3a352b39076db84a7622fc8f4796abd3cb7f97f71958a495e864659a4',
  28. 'f0ce961f7d79551598e23050d92f46e827e300f6a7e5a6112e58efcc10385d4d', # numpy-1.20.3_xfail-test-nan.patch
  29. # numpy-1.20.3_fix-target-test-ccompiler-opt.patch
  30. '3d84e8b7d48387778974a5f6ae342a690ab5989547206b6add9d9667f8d7572a',
  31. ],
  32. }),
  33. ('scipy', '1.5.4', {
  34. 'checksums': ['4a453d5e5689de62e5d38edf40af3f17560bfd63c9c5bd228c18c1f99afa155b'],
  35. }),
  36. ('mpi4py', '3.0.3', {
  37. 'checksums': ['012d716c8b9ed1e513fcc4b18e5af16a8791f51e6d1716baccf988ad355c5a1f'],
  38. }),
  39. ('pandas', '1.1.4', {
  40. 'checksums': ['a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6'],
  41. }),
  42. ('mpmath', '1.1.0', {
  43. 'checksums': ['fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6'],
  44. }),
  45. ('deap', '1.3.1', {
  46. 'checksums': ['11f54493ceb54aae10dde676577ef59fc52d52f82729d5a12c90b0813c857a2f'],
  47. }),
  48. ]
  49. sanity_pip_check = True
  50. moduleclass = 'lang'