123456789101112131415161718192021222324252627282930313233 |
- easyblock = 'PythonPackage'
- name = 'Pillow'
- version = '8.0.1'
- versionsuffix = '-Python-%(pyver)s'
- homepage = 'https://pillow.readthedocs.org/'
- description = """Pillow is the 'friendly PIL fork' by Alex Clark and Contributors.
- PIL is the Python Imaging Library by Fredrik Lundh and Contributors."""
- toolchain = {'name': 'GCCcore', 'version': '10.2.0'}
- source_urls = [PYPI_SOURCE]
- sources = [SOURCE_TAR_GZ]
- builddependencies = [('binutils', '2.35')]
- dependencies = [
- ('Python', '3.8.6'),
- ('libjpeg-turbo', '2.0.5'),
- ('libpng', '1.6.37'),
- ('zlib', '1.2.11'),
- ('LibTIFF', '4.1.0'),
- ('freetype', '2.10.3')
- ]
- download_dep_fail = True
- use_pip = True
- sanity_pip_check = True
- options = {'modulename': 'PIL'}
- moduleclass = 'vis'
|