PyQt5-5.8.2-intel-2018-Python-2.7.13.eb 978 B

12345678910111213141516171819202122232425262728293031323334
  1. easyblock = 'ConfigureMakePythonPackage'
  2. name = 'PyQt5'
  3. version = '5.8.2'
  4. versionsuffix = '-Python-%(pyver)s'
  5. homepage = 'http://www.riverbankcomputing.co.uk/software/pyqt'
  6. description = """PyQt5 is a set of Python bindings for v5 of the Qt application framework from The Qt Company."""
  7. toolchain = {'name': 'intel', 'version': '2018'}
  8. source_urls = ['http://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-%(version)s']
  9. sources = ['%(name)s_gpl-%(version)s.tar.gz']
  10. dependencies = [
  11. ('Python', '2.7.13'),
  12. ('SIP', '4.19.2', versionsuffix),
  13. ('Qt5', '5.8.0'),
  14. ]
  15. configopts = "configure.py --confirm-license"
  16. configopts += " --destdir=%(installdir)s/lib/python%(pyshortver)s/site-packages "
  17. configopts += " --no-sip-files"
  18. options = {'modulename': '%(name)s'}
  19. modextrapaths = {'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages'}
  20. sanity_check_paths = {
  21. 'files': [],
  22. 'dirs': ['lib/python%(pyshortver)s/site-packages/%(name)s'],
  23. }
  24. moduleclass = 'vis'