summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-03-18 18:02:31 -0400
committerGitHub <noreply@github.com>2023-03-18 17:02:31 -0500
commit5b04146f8a3ce16240d99f588982512ff4d15dd8 (patch)
treeff9a512f86a7e59b422ce73f775e5a766b92b84d
parenteddbbb867de6a68107e3d38e7815ad0dc24b3137 (diff)
downloadspack-5b04146f8a3ce16240d99f588982512ff4d15dd8.tar.gz
spack-5b04146f8a3ce16240d99f588982512ff4d15dd8.tar.bz2
spack-5b04146f8a3ce16240d99f588982512ff4d15dd8.tar.xz
spack-5b04146f8a3ce16240d99f588982512ff4d15dd8.zip
New package py-pyhull (#36107)
* New package py-pyhull * [@spackbot] updating style on behalf of meyersbs
-rw-r--r--var/spack/repos/builtin/packages/py-pyhull/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyhull/package.py b/var/spack/repos/builtin/packages/py-pyhull/package.py
new file mode 100644
index 0000000000..ede4130091
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyhull/package.py
@@ -0,0 +1,24 @@
+# Copyright 2013-2023 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.package import *
+
+
+class PyPyhull(PythonPackage):
+ """Pyhull is a Python wrapper to Qhull (http://www.qhull.org/) for the
+ computation of the convex hull, Delaunay triangulation and Voronoi diagram.
+ It is written as a Python C extension, with both high-level and low-level
+ interfaces to qhull."""
+
+ homepage = "https://github.com/materialsvirtuallab/pyhull"
+ pypi = "pyhull/pyhull-2015.2.1.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("2015.2.1", sha256="d2ff0aa3298b548287587609a24f4e2aae7f7b8b1df152a90cd313260abc3a24")
+
+ # From setup.py:
+ depends_on("py-setuptools", type="build")
+ depends_on("py-numpy", type=("build", "run"))