summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarchxlith <55454330+archxlith@users.noreply.github.com>2021-01-11 17:36:29 -0500
committerGitHub <noreply@github.com>2021-01-11 16:36:29 -0600
commit60a58d89e73f2bc820812c97544ef04193b90fe2 (patch)
treec4e28aeca35776b8e3f70452ceb7ed631ba12132
parente7ed832c8d8848912a5a67be6bffcdee11ecc823 (diff)
downloadspack-60a58d89e73f2bc820812c97544ef04193b90fe2.tar.gz
spack-60a58d89e73f2bc820812c97544ef04193b90fe2.tar.bz2
spack-60a58d89e73f2bc820812c97544ef04193b90fe2.tar.xz
spack-60a58d89e73f2bc820812c97544ef04193b90fe2.zip
New package [py-scikit-fmm] (#20775)
* New package [py-scikit-fmm] * [py-scikit-fmm] Removed redundant depends_on
-rw-r--r--var/spack/repos/builtin/packages/py-scikit-fmm/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-scikit-fmm/package.py b/var/spack/repos/builtin/packages/py-scikit-fmm/package.py
new file mode 100644
index 0000000000..fb80e46f69
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-scikit-fmm/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2021 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 PyScikitFmm(PythonPackage):
+ """scikit-fmm is a Python extension module which implements the fast marching
+ method."""
+
+ pypi = "scikit-fmm/scikit-fmm-2019.1.30.tar.gz"
+ git = "https://github.com/scikit-fmm/scikit-fmm.git"
+
+ maintainers = ['archxlith']
+
+ version('master', branch='master')
+ version('2019.1.30', sha256='eb64b6d8e30b8df8f8636d5fc4fd7ca6a9b05938ccd62518c80c1d9e823069dd')
+
+ depends_on('py-numpy@1.0.2:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')