summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-wxmplot/package.py
blob: 857a6d2b7c76e71cb178b0232d74749b560ef578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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.package import *


class PyWxmplot(PythonPackage):
    """wxPython plotting widgets using matplotlib."""

    homepage = "https://newville.github.io/wxmplot/"
    pypi = "wxmplot/wxmplot-0.9.38.tar.gz"

    version('0.9.38', sha256='82dc64abb42bdd03ec7067a3aa2a475001f2bc8e4772149bae47facf460c0081')

    depends_on('py-setuptools', type='build')
    depends_on('py-numpy@1.12:', type=('build', 'run'))
    depends_on('py-six@1.10:', type=('build', 'run'))
    depends_on('py-matplotlib@2.0:', type=('build', 'run'))
    depends_on('py-wxpython@4.0.3:', type=('build', 'run'))