newapkbuild: add py3-setuptools to python apkbuild

Seeing as the default python build/check/package apkbuild functions call `setup.py` and that relies on `py3-setuptools`, perhaps it should be added to the makedepends.

Inspiration from https://github.com/alpinelinux/aports/pull/7641#pullrequestreview-234326397
This commit is contained in:
Russ 2019-05-07 16:31:56 +10:00 committed by Natanael Copa
parent 68a054e274
commit bffe0efc06

View File

@ -213,7 +213,7 @@ newaport() {
fi
case "$buildtype" in
python) makedepends="python3-dev";;
python) makedepends="python3-dev py3-setuptools";;
cmake) makedepends="cmake";;
meson) makedepends="meson";;
*) makedepends="\$depends_dev";;