dev-python/dbfread - 2.0.7 (gentoo)

Search

Install

Install this version:

emerge -a =dev-python/dbfread-2.0.7

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-python/dbfread-2.0.7

Or alternatively:

emerge --autounmask-write -a =dev-python/dbfread-2.0.7

Package Information

Description:
Read DBF Files with Python
Homepage:
https://github.com/olemb/dbfread/ https://pypi.org/project/dbfread/
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
2.0.7 8 ~amd64 ~arm64-macos ~x64-macos 0
View Raw Ebuild
# Copyright 2021-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )

inherit distutils-r1 pypi

DESCRIPTION="Read DBF Files with Python"
HOMEPAGE="
	https://github.com/olemb/dbfread/
	https://pypi.org/project/dbfread/
"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64-macos ~x64-macos"

EPYTEST_PLUGINS=()
distutils_enable_tests pytest

EPYTEST_DESELECT=(
	dbfread/test_read_and_length.py::test_len
	dbfread/test_read_and_length.py::test_list
)

python_prepare_all() {
	sed -e 's|\[pytest\]|[tool:pytest]|' -i setup.cfg || die
	distutils-r1_python_prepare_all
}

Inherited Eclasses