18 lines
495 B
Bash
18 lines
495 B
Bash
|
# Copyright 2022 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
DISTUTILS_USE_SETUPTOOLS=pyproject.toml
|
||
|
PYTHON_COMPAT=( python3_{8..10} )
|
||
|
inherit distutils-r1
|
||
|
|
||
|
DESCRIPTION="Python package wrapping the IANA time zone database"
|
||
|
HOMEPAGE="https://github.com/python/tzdata"
|
||
|
SRC_URI="https://github.com/python/tzdata/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
LICENSE="Apache-2.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
|
||
|
|
||
|
distutils_enable_tests pytest
|