blob: f342cd0204907cc04c916bd875c369d1e63d546e (
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
|
# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..14} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="Python 3-D coordinate conversions"
HOMEPAGE="https://github.com/geospace-code/pymap3d"
SRC_URI="https://github.com/geospace-code/${PN}/archive/refs/tags/v${PV}.tar.gz
-> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
BDEPEND="test? (
dev-python/xarray[${PYTHON_USEDEP}]
dev-python/pyproj[${PYTHON_USEDEP}]
)"
EPYTEST_PLUGINS=( )
distutils_enable_tests pytest
src_prepare() {
rm src/pymap3d/tests/test_eci.py || die
default
}
|