# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( python3_{8..10} ) EGIT_REPO_URI="https://github.com/jieter/${PN}.git" inherit distutils-r1 git-r3 optfeature DESCRIPTION="Django application for creating HTML tables" HOMEPAGE="https://github.com/jieter/django-tables2" SRC_URI="" LICENSE="BSD-2" SLOT="0" KEYWORDS="" RDEPEND="dev-python/django[${PYTHON_USEDEP}]" BDEPEND="test? ( dev-python/django-filter[${PYTHON_USEDEP}] dev-python/lxml[${PYTHON_USEDEP}] dev-python/openpyxl[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] dev-python/psycopg:2[${PYTHON_USEDEP}] dev-python/pytz[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/tablib[xls,yaml,${PYTHON_USEDEP}] )" distutils_enable_tests unittest python_prepare_all() { # Remove tests rely on fudge rm tests/test_config.py || die "rm failed" distutils-r1_python_prepare_all } python_test() { PYTHONPATH=. django-admin.py test --settings=tests.app.settings \ tests --verbosity 2 || die "tests failed with ${EPYTHON}" } pkg_postinst() { optfeature "integration with Tablib for exporting table data as CSV, XLS" dev-python/tablib optfeature "integration with PostgreSQL backend for Automatic rendering of data in jsoncolumn" dev-python/psycopg:2 }