py-pyqt-builder: add new package (#27484)

This commit is contained in:
Manuela Kuhn 2021-11-16 20:11:30 +01:00 committed by GitHub
parent a867320021
commit 85cf8af026
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
class PyPyqtBuilder(PythonPackage):
"""The PEP 517 compliant PyQt build system."""
homepage = "https://www.riverbankcomputing.com/hg/PyQt-builder/"
pypi = "PyQt-builder/PyQt-builder-1.12.2.tar.gz"
version('1.12.2', sha256='f62bb688d70e0afd88c413a8d994bda824e6cebd12b612902d1945c5a67edcd7')
depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools@30.3:', type='build')
depends_on('py-packaging', type=('build', 'run'))
depends_on('py-sip@6.3:6', type=('build', 'run'))