summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-12-07 22:14:20 -0600
committerGitHub <noreply@github.com>2019-12-07 22:14:20 -0600
commitdb1026cb626d8ebfa231da59fa33c5b4e93efe91 (patch)
tree48b06a37c065a006c7b45881b0f4d1f8ccf07236
parent891ccbea3f0e991a240e03652fae9345ceb642a9 (diff)
downloadspack-db1026cb626d8ebfa231da59fa33c5b4e93efe91.tar.gz
spack-db1026cb626d8ebfa231da59fa33c5b4e93efe91.tar.bz2
spack-db1026cb626d8ebfa231da59fa33c5b4e93efe91.tar.xz
spack-db1026cb626d8ebfa231da59fa33c5b4e93efe91.zip
Add new py-wxmplot package (#14036)
-rw-r--r--var/spack/repos/builtin/packages/py-wxmplot/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-wxmplot/package.py b/var/spack/repos/builtin/packages/py-wxmplot/package.py
new file mode 100644
index 0000000000..bb52c5e330
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-wxmplot/package.py
@@ -0,0 +1,24 @@
+# Copyright 2013-2019 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 PyWxmplot(PythonPackage):
+ """wxPython plotting widgets using matplotlib."""
+
+ homepage = "https://newville.github.io/wxmplot/"
+ url = "https://pypi.io/packages/source/w/wxmplot/wxmplot-0.9.38.tar.gz"
+
+ import_modules = ['wxmplot']
+
+ 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'))
+ depends_on('py-pytest', type='test')