unitas-netbox/dev-python/tablib/tablib-3.4.0.ebuild
2025-03-05 14:28:19 +01:00

53 lines
1.5 KiB
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10,11,12} )
inherit distutils-r1 optfeature
DESCRIPTION="Format-agnostic tabular dataset library"
HOMEPAGE="https://github.com/jazzband/tablib"
SRC_URI="https://github.com/jazzband/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="xls yaml"
RDEPEND="xls? ( dev-python/xlrd[${PYTHON_USEDEP}]
dev-python/xlwt[${PYTHON_USEDEP}] )
yaml? ( dev-python/pyyaml[${PYTHON_USEDEP}] )"
BDEPEND="dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? ( dev-python/MarkupPy[${PYTHON_USEDEP}]
dev-python/odfpy[${PYTHON_USEDEP}]
dev-python/openpyxl[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/pyyaml[${PYTHON_USEDEP}]
dev-python/tabulate[${PYTHON_USEDEP}]
dev-python/xlrd[${PYTHON_USEDEP}]
dev-python/xlwt[${PYTHON_USEDEP}] )"
distutils_enable_tests pytest
python_prepare_all() {
export SETUPTOOLS_SCM_PRETEND_VERSION="${PV}"
# Disable pytest options
sed -i '/addopts/d' pytest.ini || die "sed failed for pytest.ini"
distutils-r1_python_prepare_all
}
pkg_postinst() {
optfeature "support cli" dev-python/tabulate
optfeature "support html" dev-python/MarkupPy
optfeature "support ods" dev-python/odfpy
optfeature "support pandas" dev-python/pandas
optfeature "support xls" dev-python/xlrd dev-python/xlwt
optfeature "support xlsx" dev-python/openpyxl
optfeature "support yaml" dev-python/pyyaml
}