summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyabel/package.py
blob: e3082e19c796e771e1a3f2ec52a2971e91b36f2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# 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 PyPyabel(PythonPackage):
    """A Python package for forward and inverse Abel transforms."""

    homepage = "https://github.com/PyAbel/PyAbel"
    pypi = "PyAbel/PyAbel-0.9.0.tar.gz"

    maintainers("valmar")

    license("MIT")

    version("0.9.0", sha256="4052143de9da19be13bb321fb0524090ffc8cdc56e0e990e5d6f557f18109f08")

    depends_on("py-setuptools@44.0:", type="build")
    depends_on("py-numpy@1.16:", type=("build", "run"))
    depends_on("py-scipy@1.2:", type=("build", "run"))
    depends_on("py-six@1.10.0:", type=("build", "run"))