aboutsummaryrefslogtreecommitdiff
blob: 921c13417d8921a62510693574a09c2e5235ac55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{10..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 optfeature

DESCRIPTION="Python tools for geographic data"
HOMEPAGE="https://github.com/geopandas/geopandas https://pypi.org/project/geopandas/"
SRC_URI="https://github.com/geopandas/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND="
	dev-python/pandas[${PYTHON_USEDEP}]
	dev-python/shapely[${PYTHON_USEDEP}]
	dev-python/fiona[${PYTHON_USEDEP}]
	dev-python/pyproj[${PYTHON_USEDEP}]"

distutils_enable_tests pytest

python_test() {
	local deselect=(
		# needs network access
		geopandas/io/tests/test_file.py::test_read_file_url
		# fails with RuntimeError thrown by matplotlib
		geopandas/tests/test_plotting.py::TestGeoplotAccessor::test_pandas_kind
	)

	epytest ${deselect[@]/#/--deselect }
}

pkg_postinst() {
	optfeature "plotting" dev-python/matplotlib
	optfeature "spatial indexes and spatial joins" sci-libs/rtree
	optfeature "geocoding" sci-geosciences/geopy
	optfeature "geodatabase access" dev-python/psycopg dev-python/sqlalchemy
}