summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-tzdata/package.py
blob: c707b66089f0cd96ca3790482b15dfdd349830f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyTzdata(PythonPackage):
    """Provider of IANA time zone data."""

    homepage = "https://github.com/python/tzdata"
    pypi = "tzdata/tzdata-2023.3.tar.gz"

    license("Apache-2.0")

    version("2023.3", sha256="11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a")

    depends_on("py-setuptools@40.8:", type="build")