dev-python/spark-parser: Fix setup.py unconditional test only dep bug 599638

Package-Manager: portage-2.3.2_p3
This commit is contained in:
Brian Dolbec
2016-11-13 08:54:05 -08:00
parent e374c1ca4a
commit faecf93579

View File

@@ -29,6 +29,14 @@ DEPEND="
S="${WORKDIR}/${MY_PN}-${PV}"
python_prepare_all() {
# Remove an unconditional test only dep
sed \
-e "s/setup_requires/# setup_requires/" \
-i setup.py
distutils-r1_python_prepare_all
}
python_test() {
emake check
}