Mako-1.0.6-intel-2018.eb 549 B

123456789101112131415161718192021
  1. easyblock = 'PythonPackage'
  2. name = 'Mako'
  3. version = '1.0.6'
  4. homepage = 'http://www.makotemplates.org'
  5. description = """A super-fast templating language that borrows the best ideas from the existing templating languages"""
  6. toolchain = {'name': 'intel', 'version': '2018'}
  7. source_urls = [PYPI_SOURCE]
  8. sources = [SOURCE_TAR_GZ]
  9. dependencies = [('Python', '2.7.13')]
  10. sanity_check_paths = {
  11. 'files': ['bin/mako-render'],
  12. 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s-%(version)s-py%(pyshortver)s.egg'],
  13. }
  14. moduleclass = 'devel'