summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pysolar/package.py
blob: 202ddcd728d378d7cb4d6650421ce87ec7ca6a06 (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
25
26
27
# Copyright 2013-2024 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 PyPysolar(PythonPackage):
    """Pysolar is a collection of Python libraries for simulating the
    irradiation of any point on earth by the sun. It includes code
    for extremely precise ephemeris calculations, and more."""

    homepage = "https://pysolar.readthedocs.io"
    pypi = "pysolar/pysolar-0.8.tar.gz"

    version("0.8", sha256="548c05177acd2845143d9624e670635cd3e5c3a63782449ca35e090ca755c617")
    version(
        "0.6",
        sha256="961f43d6346b41451930c7892f144c19c6e0ecfbdda6980611c866a691b6127f",
        url="https://files.pythonhosted.org/packages/source/p/pysolar/Pysolar-0.6.tar.gz",
    )

    depends_on("py-setuptools", type="build")
    depends_on("python@3:", type=("build", "run"), when="@0.8:")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-pytz", type=("build", "run"))