mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-07 01:08:14 -07:00
dev-python/agate: keyword 1.7.1 for ~arm64-macos, ~x64-macos dev-python/agate-excel: keyword 0.2.5-r2 for ~arm64-macos, ~x64-macos dev-python/agate-dbf: keyword 0.2.2-r2 for ~arm64-macos, ~x64-macos dev-python/agate-sql: keyword 0.5.9 for ~arm64-macos, ~x64-macos dev-python/dbfread: keyword 2.0.7-r1 for ~arm64-macos, ~x64-macos dev-python/openpyxl: keyword 3.1.2 for ~arm64-macos, ~x64-macos dev-python/xlrd: keyword 2.0.1-r1 for ~arm64-macos, ~x64-macos dev-python/et_xmlfile: keyword 1.1.0-r1 for ~arm64-macos, ~x64-macos dev-python/pytimeparse: keyword 1.1.8-r1 for ~arm64-macos, ~x64-macos dev-python/parsedatetime: keyword 2.6-r1 for ~arm64-macos, ~x64-macos dev-python/isodate: keyword 0.6.1-r1 for ~arm64-macos, ~x64-macos dev-python/pyicu: keyword 2.11 for ~arm64-macos, ~x64-macos dev-python/python-slugify: keyword 8.0.1 for ~arm64-macos, ~x64-macos dev-python/leather: keyword 0.3.4-r1 for ~arm64-macos, ~x64-macos dev-python/text-unidecode: keyword 1.3-r1 for ~arm64-macos, ~x64-macos Signed-off-by: Benda Xu <heroxbd@gentoo.org>
39 lines
786 B
Bash
39 lines
786 B
Bash
# Copyright 2021-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYPI_NO_NORMALIZE=1
|
|
PYTHON_COMPAT=( python3_{9..11} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="Adds SQL read/write support to agate"
|
|
HOMEPAGE="
|
|
https://github.com/wireservice/agate-sql/
|
|
https://pypi.org/project/agate-sql/
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64-macos ~x64-macos"
|
|
|
|
RDEPEND="
|
|
>=dev-python/agate-1.5.0[${PYTHON_USEDEP}]
|
|
<dev-python/sqlalchemy-2[${PYTHON_USEDEP}]
|
|
"
|
|
BDEPEND="
|
|
test? (
|
|
dev-python/greenlet[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
EPYTEST_DESELECT=(
|
|
# requires crate
|
|
tests/test_agatesql.py::TestSQL::test_to_sql_create_statement_with_dialects
|
|
)
|