summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-climate/package.py
blob: 37e1f940696e41d7edc9f5ce3e0ca7cb2d86e583 (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
# 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 PyClimate(PythonPackage):
    """Command line arguments parsing"""

    homepage = "https://pypi.org/project/climate/"
    url = "https://pypi.io/packages/py3/c/climate/climate-0.1.0-py3-none-any.whl"

    license("Apache-2.0")

    version(
        "0.1.0",
        sha256="01026c764b34d8204b8f527a730ef667fa5827fca765993ff1ed3e9dab2c11ae",
        expand=False,
    )

    depends_on("python@3.7:3", type=("build", "run"))