1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- easyblock = 'PythonBundle'
- name = 'matplotlib'
- version = '3.1.0'
- versionsuffix = '-Python-%(pyver)s'
- homepage = 'http://matplotlib.org'
- description = """matplotlib is a python 2D plotting library which produces publication quality figures in a variety of
- hardcopy formats and interactive environments across platforms. matplotlib can be used in python scripts, the python
- and ipython shell, web application servers, and six graphical user interface toolkits."""
- toolchain = {'name': 'foss', 'version': '2019a'}
- builddependencies = [
- ('pkg-config', '0.29.2'),
- ]
- dependencies = [
- ('Python', '3.7.2'),
- ('SciPy-bundle', '2019.03'),
- ('libpng', '1.6.36'),
- ('freetype', '2.9.1'),
- ('Tkinter', '%(pyver)s'),
- ]
- use_pip = True
- exts_list = [
- ('Cycler', '0.10.0', {
- 'modulename': 'cycler',
- 'source_tmpl': 'cycler-%(version)s.tar.gz',
- 'source_urls': ['https://pypi.python.org/packages/source/C/Cycler'],
- 'checksums': ['cd7b2d1018258d7247a71425e9f26463dfb444d411c39569972f4ce586b0c9d8'],
- }),
- ('kiwisolver', '1.1.0', {
- 'source_urls': ['https://pypi.python.org/packages/source/k/kiwisolver'],
- 'checksums': ['53eaed412477c836e1b9522c19858a8557d6e595077830146182225613b11a75'],
- }),
- (name, version, {
- 'prebuildopts': "export CPLUS_INCLUDE_PATH=$EBROOTFREETYPE/include/freetype2:${CPLUS_INCLUDE_PATH} && ",
- 'preinstallopts': "export CPLUS_INCLUDE_PATH=$EBROOTFREETYPE/include/freetype2:${CPLUS_INCLUDE_PATH} && ",
- 'source_urls': ['https://pypi.python.org/packages/source/m/matplotlib'],
- }),
- ]
- sanity_check_commands = ["""python -c 'import matplotlib; matplotlib.use("TkAgg"); import matplotlib.pyplot' """]
- modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']}
-
- # see https://matplotlib.org/tutorials/introductory/usage.html#what-is-a-backend
- modextravars = {'MPLBACKEND': 'TkAgg'}
- moduleclass = 'vis'
|