py-pyqt5: add missing py-enum34 dependency (#12224)

This commit is contained in:
Adam J. Stewart 2019-08-01 06:30:35 -05:00 committed by Massimiliano Culpo
parent 9b03ab43ed
commit 61b824580e

View File

@ -18,10 +18,12 @@ class PyPyqt5(SIPPackage):
version('5.13.0', sha256='0cdbffe5135926527b61cc3692dd301cd0328dd87eeaf1313e610787c46faff9') version('5.13.0', sha256='0cdbffe5135926527b61cc3692dd301cd0328dd87eeaf1313e610787c46faff9')
depends_on('py-sip@4.19.14:')
# Without opengl support, I got the following error: # Without opengl support, I got the following error:
# sip: QOpenGLFramebufferObject is undefined # sip: QOpenGLFramebufferObject is undefined
depends_on('qt@5:+opengl') depends_on('qt@5:+opengl')
depends_on('python@2.6:', type=('build', 'run')) depends_on('python@2.6:', type=('build', 'run'))
depends_on('py-enum34', type=('build', 'run'), when='^python@:3.3')
# https://www.riverbankcomputing.com/static/Docs/PyQt5/installation.html # https://www.riverbankcomputing.com/static/Docs/PyQt5/installation.html
def configure_args(self): def configure_args(self):