py-sparse: new package at v0.11.2 (#20573)

This commit is contained in:
a-saitoh-fj 2020-12-28 20:51:39 +09:00 committed by GitHub
parent e4c41080b7
commit b6ed75f1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,21 @@
# Copyright 2013-2020 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 PySparse(PythonPackage):
"""This library provides multi-dimensional sparse arrays."""
homepage = "https://sparse.pydata.org"
url = "https://github.com/pydata/sparse/archive/0.11.2.tar.gz"
version('0.11.2', sha256='365b6f038c4d331b3913e5fb00f5bc5dc5eadc49ef2feef332214f9bf33dbc82')
depends_on('python@3.6:3.999', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-scipy@0.19:', type=('build', 'run'))
depends_on('py-numba@0.49:', type=('build', 'run'))