New package [py-scikit-fmm] (#20775)

* New package [py-scikit-fmm]

* [py-scikit-fmm] Removed redundant depends_on
This commit is contained in:
archxlith 2021-01-11 17:36:29 -05:00 committed by GitHub
parent e7ed832c8d
commit 60a58d89e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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')