summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-meshpy/package.py
diff options
context:
space:
mode:
authorChristian Glusa <cgcgcg@users.noreply.github.com>2023-02-07 15:12:15 -0700
committerGitHub <noreply@github.com>2023-02-07 14:12:15 -0800
commitdf80cffafa48109122bf66791640265607c3c23d (patch)
tree453a4876316f9c33bb9d379462600d06d2d81b7a /var/spack/repos/builtin/packages/py-meshpy/package.py
parentb52d4b8abf9720f7161697cc2e62823da3195d9b (diff)
downloadspack-df80cffafa48109122bf66791640265607c3c23d.tar.gz
spack-df80cffafa48109122bf66791640265607c3c23d.tar.bz2
spack-df80cffafa48109122bf66791640265607c3c23d.tar.xz
spack-df80cffafa48109122bf66791640265607c3c23d.zip
New package: PyNucleus & dependencies (#35327)
* Add py-scikit-sparse package * Add py-gmsh-interop package * Add py-modepy package * Add py-pymbolic package * Add py-meshpy package * Add py-pynucleus package * Add new version of py-pytools
Diffstat (limited to 'var/spack/repos/builtin/packages/py-meshpy/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-meshpy/package.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-meshpy/package.py b/var/spack/repos/builtin/packages/py-meshpy/package.py
new file mode 100644
index 0000000000..106d71fb05
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-meshpy/package.py
@@ -0,0 +1,25 @@
+# Copyright 2013-2022 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 PyMeshpy(PythonPackage):
+ """Simplicial Mesh Generation from Python"""
+
+ homepage = "https://documen.tician.de/meshpy/"
+ pypi = "MeshPy/MeshPy-2022.1.3.tar.gz"
+ git = "https://github.com/inducer/meshpy.git"
+
+ maintainers("cgcgcg")
+
+ version("2022.1.3", sha256="a7158e31ece25fa6c6cebce9fd1e968157d661dc8769fb30ceba69c351478475")
+
+ depends_on("python@3.6:3", type=("build", "run"))
+ depends_on("py-setuptools", type="build")
+ depends_on("py-pybind11", type="build")
+ depends_on("py-pytools@2011.2:", type=("build", "run"))
+ depends_on("py-numpy", type=("build", "run"))
+ depends_on("py-gmsh-interop", type=("build", "run"))