spack/var/spack/repos/builtin/packages/py-sparse/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
796 B
Python

# Copyright 2013-2023 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 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", 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"))