diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2025-06-18 00:13:45 +0300 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2025-06-18 00:13:45 +0300 |
commit | c22d07ea425259582a129db333bd4c6cd5d4463d (patch) | |
tree | 031dc103ad833c974621f41778055b8d0eab65ad | |
parent | databases/py-firebirdsql: update to 1.3.5 (diff) |
textproc/py-wtforms: fix build with python 3.12
- register setuptools as a build dependency
PR: 287249
Reported by: Matthew Wener <matthew@wener.org>
-rw-r--r-- | textproc/py-wtforms/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/py-wtforms/Makefile b/textproc/py-wtforms/Makefile index 2a0bc9eb414c..b1708942bb8d 100644 --- a/textproc/py-wtforms/Makefile +++ b/textproc/py-wtforms/Makefile @@ -12,7 +12,8 @@ WWW= http://wtforms.simplecodes.com/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.rst -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR} \ +BUILD_DEPENDS= ${PY_SETUPTOOLS} \ + ${PYTHON_PKGNAMEPREFIX}Babel>0:devel/py-babel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-dateutil>0:devel/py-python-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}hatchling>0:devel/py-hatchling@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markupsafe>0:textproc/py-markupsafe@${PY_FLAVOR} \ |