summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorKelly (KT) Thompson <KineticTheory@users.noreply.github.com>2019-08-23 16:22:31 -0600
committerPeter Scheibel <scheibel1@llnl.gov>2019-08-23 15:22:31 -0700
commitfdd7314cd165e62092780a16007d349b4728e353 (patch)
treee01ed2d9dd45e3fdd89054e6500bc9ab752a5328 /var
parentc900cd64c376fdaba066b1a9fd509da8acd9bef0 (diff)
downloadspack-fdd7314cd165e62092780a16007d349b4728e353.tar.gz
spack-fdd7314cd165e62092780a16007d349b4728e353.tar.bz2
spack-fdd7314cd165e62092780a16007d349b4728e353.tar.xz
spack-fdd7314cd165e62092780a16007d349b4728e353.zip
New package: py-opppy (#12483)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-opppy/package.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-opppy/package.py b/var/spack/repos/builtin/packages/py-opppy/package.py
new file mode 100644
index 0000000000..a005332ab0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-opppy/package.py
@@ -0,0 +1,27 @@
+# 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 PyOpppy(PythonPackage):
+ """The Output Parse-Plot Python (OPPPY) library is a python based data
+ analysis library designed to extract, store, and plot information from
+ output and dump files generated by scientific software packages."""
+
+ homepage = "https://github.com/lanl/opppy"
+ url = "https://github.com/lanl/OPPPY/archive/OPPPY-0_1_1.tar.gz"
+ git = "https://github.com/lanl/opppy.git"
+
+ version('master', branch='master')
+ version('0.1.1', '852a1329ce68d678623beed3fd01ea98')
+
+ depends_on('py-setuptools', type=('build', 'run'))
+ depends_on('py-numpy@1.6:', type=('build', 'run'))
+ depends_on('python@3:', type=('build', 'run'))
+ depends_on('py-argparse', type=('build', 'run'))
+ depends_on('py-scipy', type=('build', 'run'))
+ depends_on('py-matplotlib', type=('build', 'run'))
+ depends_on('py-sphinx', type=('build', 'run'))