summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-09-16 13:06:59 -0500
committerGitHub <noreply@github.com>2019-09-16 13:06:59 -0500
commit0885615e2243aabe3eeb6e27e0b0b07a4b2bb7de (patch)
tree1fd0813aae8f5dcb513beeed732abff6a9a471b4
parent3b11dfdca0ca36726f3e947dd0a89b025d9bb6b3 (diff)
downloadspack-0885615e2243aabe3eeb6e27e0b0b07a4b2bb7de.tar.gz
spack-0885615e2243aabe3eeb6e27e0b0b07a4b2bb7de.tar.bz2
spack-0885615e2243aabe3eeb6e27e0b0b07a4b2bb7de.tar.xz
spack-0885615e2243aabe3eeb6e27e0b0b07a4b2bb7de.zip
Add py-lscsoft-glue package (#12821)
-rw-r--r--var/spack/repos/builtin/packages/py-lscsoft-glue/package.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-lscsoft-glue/package.py b/var/spack/repos/builtin/packages/py-lscsoft-glue/package.py
new file mode 100644
index 0000000000..3770ee668f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-lscsoft-glue/package.py
@@ -0,0 +1,23 @@
+# 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 PyLscsoftGlue(PythonPackage):
+ """Glue (Grid LSC User Environment) is a suite of python modules and
+ programs to allow users to run LSC codes on the grid. It also provides
+ certain metadata services, such as the LSC segment database."""
+
+ homepage = "https://www.lsc-group.phys.uwm.edu/daswg/projects/glue.html"
+ url = "https://pypi.io/packages/source/l/lscsoft-glue/lscsoft-glue-2.0.0.tar.gz"
+
+ version('2.0.0', sha256='9bdfaebe4c921d83d1e3d1ca24379a644665e9d7530e7070665f387767c66923')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-six', type=('build', 'run'))
+ depends_on('py-pyopenssl', type=('build', 'run'))
+ depends_on('py-numpy', type=('build', 'run'))
+ depends_on('py-ligo-segments', type=('build', 'run'))