py-pyvistaqt: add new package (#26637)

This commit is contained in:
Manuela Kuhn 2021-10-09 23:00:00 +02:00 committed by GitHub
parent 5deb8a05c4
commit 7f46b9a669
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 PyPyvistaqt(PythonPackage):
"""PyQT support for PyVista."""
homepage = "https://github.com/pyvista/pyvistaqt"
pypi = "pyvistaqt/pyvistaqt-0.5.0.tar.gz"
version('0.5.0', sha256='f2358825d3c5f434760c13fdff5d3681b3cf36898e6e909c8a7934a8e6448f71')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-pyvista@0.25:', type=('build', 'run'))
depends_on('py-qtpy@1.9:', type=('build', 'run'))