Pygments-2.1.3-intel-2018-Python-2.7.13.eb 621 B

1234567891011121314151617181920212223242526
  1. easyblock = 'PythonPackage'
  2. name = 'Pygments'
  3. version = '2.1.3'
  4. versionsuffix = '-Python-%(pyver)s'
  5. homepage = 'http://pygments.org/'
  6. description = """Generic syntax highlighter suitable for use in code hosting, forums, wikis or other applications
  7. that need to prettify source code."""
  8. toolchain = {'name': 'intel', 'version': '2018'}
  9. source_urls = [PYPI_SOURCE]
  10. sources = [SOURCE_TAR_GZ]
  11. dependencies = [
  12. ('Python', '2.7.13'),
  13. ]
  14. sanity_check_paths = {
  15. 'files': ['bin/pygmentize'],
  16. 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'],
  17. }
  18. moduleclass = 'devel'