Install this version:
emerge -a =dev-python/neo4j-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/neo4j-9999
Or alternatively:
emerge --autounmask-write -a =dev-python/neo4j-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..14} )
inherit distutils-r1 git-r3 optfeature
DESCRIPTION="Neo4j Bolt driver for Python"
HOMEPAGE="https://github.com/neo4j/neo4j-python-driver"
EGIT_REPO_URI="https://github.com/neo4j/neo4j-python-driver.git"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="test"
RDEPEND="dev-python/pytz[${PYTHON_USEDEP}]"
BDEPEND="dev-python/tomlkit[${PYTHON_USEDEP}]
test? ( dev-python/freezegun[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/pyarrow[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}] )"
EPYTEST_XDIST=1
distutils_enable_tests pytest
EPYTEST_IGNORE=(
# ignore integration and performance tests
tests/integration
tests/performance
)
pkg_postinst() {
optfeature "support numpy" dev-python/numpy
optfeature "support pandas" dev-python/numpy dev-python/pandas
optfeature "support pyarrow" dev-python/pyarrow
}
Manage flags for this package:
euse -i <flag> -p dev-python/neo4j |
euse -E <flag> -p dev-python/neo4j |
euse -D <flag> -p dev-python/neo4j
dev-python/pytz[]
dev-python/tomlkit[] test? ( dev-python/freezegun[] dev-python/mock[] dev-python/numpy[] dev-python/pandas[] dev-python/pyarrow[] dev-python/pytest-asyncio[] dev-python/pytest-mock[] )