summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorcodeandkey <jtst@iastate.edu>2020-06-09 13:55:55 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2020-06-11 08:25:14 -0700
commit9820a23abd06efd003464f65c84e726479a97a2b (patch)
tree7242a9a740d24ffd28eb0bc474f66fd08fbdbca6 /var
parent19dba603ad0e98700c681e675972fbaa7c9aed6c (diff)
downloadspack-9820a23abd06efd003464f65c84e726479a97a2b.tar.gz
spack-9820a23abd06efd003464f65c84e726479a97a2b.tar.bz2
spack-9820a23abd06efd003464f65c84e726479a97a2b.tar.xz
spack-9820a23abd06efd003464f65c84e726479a97a2b.zip
py-gpy: new package at 1.9.9
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-gpy/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gpy/package.py b/var/spack/repos/builtin/packages/py-gpy/package.py
new file mode 100644
index 0000000000..59bebda5d0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-gpy/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2020 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 PyGpy(PythonPackage):
+ """The Gaussian Process Toolbox."""
+
+ homepage = "http://sheffieldml.github.com/GPy/"
+ url = "https://pypi.io/packages/source/g/gpy/GPy-1.9.9.tar.gz"
+
+ version('1.9.9', sha256='04faf0c24eacc4dea60727c50a48a07ddf9b5751a3b73c382105e2a31657c7ed')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy@1.7:', type=('build', 'run'))
+ depends_on('py-scipy@1.3.0:', type=('build', 'run'))
+ depends_on('py-six', type=('build', 'run'))
+ depends_on('py-paramz@0.9.0:', type=('build', 'run'))
+ depends_on('py-cython@0.29:', type=('build', 'run'))