1
0
mirror of synced 2024-06-17 09:59:58 +02:00
TheChymera-overlay/dev-python/fslpy/fslpy-2.6.2.ebuild
Horea Christian 3f9228690e
dev-python/fslpy: version bump 2.6.2 ahead of Gentoo Science
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Horea Christian <chr@chymera.eu>
2019-11-04 21:41:26 +01:00

60 lines
1.5 KiB
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{5,6} )
inherit distutils-r1 virtualx
DESCRIPTION="The FSL Python Library"
HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fslpy"
SRC_URI="https://github.com/pauldmccarthy/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)
dev-python/setuptools[${PYTHON_USEDEP}]
"
RDEPEND="
dev-python/deprecation[${PYTHON_USEDEP}]
dev-python/h5py[${PYTHON_USEDEP}]
dev-python/indexed_gzip[${PYTHON_USEDEP}]
=dev-python/numpy-1*[${PYTHON_USEDEP}]
=dev-python/six-1*[${PYTHON_USEDEP}]
dev-python/trimesh[${PYTHON_USEDEP}]
=dev-python/wxpython-4*[${PYTHON_USEDEP}]
=sci-libs/Rtree-0.8.3*[${PYTHON_USEDEP}]
sci-libs/scipy[${PYTHON_USEDEP}]
>=sci-libs/nibabel-2.3.1[${PYTHON_USEDEP}]
"
# Tests fail on Gentoo with mysterious `Fatal Python error: deallocating None`
# https://github.com/pauldmccarthy/fslpy/issues/3
#RESTRICT="test"
#python_prepare_all() {
# if use test; then
# # Reported upstream
# # https://github.com/pauldmccarthy/fslpy/issues/3
# #sed -i -e \
# # "/def test_loadVestLutFile():/i@pytest.mark.xfail(reason='Known to fail on Gentoo')" \
# # tests/test_vest.py || die
# #rm tests/test_vest.py
# fi
# distutils-r1_python_prepare_all
#}
PATCHES=( "${FILESDIR}/${P}-exclude_tests.patch" )
python_test() {
virtx pytest -m "not (dicomtest or fsltest)" --verbose || die
}