2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-09 00:18:57 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-03-09 00:18:57 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPythonqwt(PythonPackage):
|
|
|
|
"""Qt plotting widgets for Python"""
|
|
|
|
|
|
|
|
homepage = "https://github.com/PierreRaybaut/PythonQwt"
|
|
|
|
url = "https://pypi.io/packages/source/P/PythonQwt/PythonQwt-0.5.5.zip"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.5.5', sha256='1f13cc8b555a57f8fe0f806d6c2f6d847050e4d837649503932b81316d12788a')
|
2017-03-09 00:18:57 +08:00
|
|
|
|
2017-11-22 22:06:59 +08:00
|
|
|
variant('doc', default=False, description="Build documentation.")
|
2017-03-09 00:18:57 +08:00
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-numpy@1.3:', type=('build', 'run'))
|
|
|
|
depends_on('py-sip', type=('build', 'run'))
|
2019-07-31 06:12:48 +08:00
|
|
|
depends_on('py-pyqt4', type=('build', 'run'))
|
2017-03-09 00:18:57 +08:00
|
|
|
depends_on('py-sphinx@1.1:', type=('build', 'run'), when='+docs')
|