Pillow-8.0.1-GCCcore-10.2.0-Python-3.8.6.eb 753 B

123456789101112131415161718192021222324252627282930313233
  1. easyblock = 'PythonPackage'
  2. name = 'Pillow'
  3. version = '8.0.1'
  4. versionsuffix = '-Python-%(pyver)s'
  5. homepage = 'https://pillow.readthedocs.org/'
  6. description = """Pillow is the 'friendly PIL fork' by Alex Clark and Contributors.
  7. PIL is the Python Imaging Library by Fredrik Lundh and Contributors."""
  8. toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
  9. source_urls = [PYPI_SOURCE]
  10. sources = [SOURCE_TAR_GZ]
  11. builddependencies = [('binutils', '2.35')]
  12. dependencies = [
  13. ('Python', '3.8.6'),
  14. ('libjpeg-turbo', '2.0.5'),
  15. ('libpng', '1.6.37'),
  16. ('zlib', '1.2.11'),
  17. ('LibTIFF', '4.1.0'),
  18. ('freetype', '2.10.3')
  19. ]
  20. download_dep_fail = True
  21. use_pip = True
  22. sanity_pip_check = True
  23. options = {'modulename': 'PIL'}
  24. moduleclass = 'vis'