mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-05 14:07:27 -08:00
47 lines
1.0 KiB
Bash
47 lines
1.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..13} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A Python client for the Zotero API"
|
|
HOMEPAGE="
|
|
https://github.com/urschrei/pyzotero/
|
|
https://pypi.org/project/pyzotero/
|
|
"
|
|
|
|
LICENSE="BlueOak-1.0.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
app-text/zotero-bin
|
|
dev-python/bibtexparser[${PYTHON_USEDEP}]
|
|
>=dev-python/feedparser-6.0.11[${PYTHON_USEDEP}]
|
|
>=dev-python/httpx-0.28.1[${PYTHON_USEDEP}]
|
|
dev-python/pytz[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
BDEPEND="
|
|
>=dev-python/trove-classifiers-2024.7.2[${PYTHON_USEDEP}]
|
|
test? (
|
|
dev-python/httpretty[${PYTHON_USEDEP}]
|
|
dev-python/ipython[${PYTHON_USEDEP}]
|
|
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
|
dev-python/python-dateutil[${PYTHON_USEDEP}]
|
|
)
|
|
"
|
|
|
|
distutils_enable_sphinx doc \
|
|
dev-python/sphinx-rtd-theme
|
|
distutils_enable_tests pytest
|
|
|
|
python_test() {
|
|
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
|
|
epytest -o addopts= -p asyncio
|
|
}
|