Install this version:
emerge -a =dev-python/osmapi-6.0.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/osmapi-6.0.0
Or alternatively:
emerge --autounmask-write -a =dev-python/osmapi-6.0.0
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python wrapper for the OSM API"
HOMEPAGE="https://github.com/metaodi/osmapi
https://pypi.org/project/osmapi/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
RESTRICT="test"
DOCS="README.md"
RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]
"
src_prepare() {
default
# tests are broken
rm -rf tests || die
}