New package [py-scikit-fmm] (#20775)
* New package [py-scikit-fmm] * [py-scikit-fmm] Removed redundant depends_on
This commit is contained in:
parent
e7ed832c8d
commit
60a58d89e7
1 changed files with 22 additions and 0 deletions
22
var/spack/repos/builtin/packages/py-scikit-fmm/package.py
Normal file
22
var/spack/repos/builtin/packages/py-scikit-fmm/package.py
Normal file
|
@ -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')
|
Loading…
Reference in a new issue