summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2019-09-16 12:57:18 -0500
committerGitHub <noreply@github.com>2019-09-16 12:57:18 -0500
commit09e3d6514b43d1c587b16ccea9131442fd117709 (patch)
treebf2d27c21695387e6f52be4d562a79739e849fb9
parent321c857d4cc2bacdeaa398d3b4b1fd7769f33718 (diff)
downloadspack-09e3d6514b43d1c587b16ccea9131442fd117709.tar.gz
spack-09e3d6514b43d1c587b16ccea9131442fd117709.tar.bz2
spack-09e3d6514b43d1c587b16ccea9131442fd117709.tar.xz
spack-09e3d6514b43d1c587b16ccea9131442fd117709.zip
Add py-weave package (#12828)
-rw-r--r--var/spack/repos/builtin/packages/py-weave/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-weave/package.py b/var/spack/repos/builtin/packages/py-weave/package.py
new file mode 100644
index 0000000000..a973aee3ed
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-weave/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 PyWeave(PythonPackage):
+ """Weave provides tools for including C/C++ code within Python code.
+
+ Weave is the stand-alone version of the now-removed SciPy submodule
+ ``scipy.weave``. It is Python 2.x only, and is provided for users that
+ need new versions of SciPy but have existing code that still depends on
+ ``scipy.weave``. For new code, users are recommended to use Cython."""
+
+ homepage = "https://www.github.com/scipy/weave"
+ url = "https://pypi.io/packages/source/w/weave/weave-0.17.0.tar.gz"
+
+ version('0.17.0', sha256='2703f3ae6d23ad47b5f09b6bcb7affd0fb587120a0c973e7be40ef24de709998')
+
+ depends_on('python@2.6:2.8', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')
+ depends_on('py-numpy', type=('build', 'run'))