git: b687180e0b87 - main - devel/py-pytest-plus: add missing build dependency

From: Matthew Seaman <matthew_at_FreeBSD.org>
Date: Sat, 22 Apr 2023 10:01:51 UTC
The branch main has been updated by matthew:

URL: https://cgit.FreeBSD.org/ports/commit/?id=b687180e0b87256f1477269eb52c07a8779b5611

commit b687180e0b87256f1477269eb52c07a8779b5611
Author:     Matthew Seaman <matthew@FreeBSD.org>
AuthorDate: 2023-03-27 11:34:07 +0000
Commit:     Matthew Seaman <matthew@FreeBSD.org>
CommitDate: 2023-04-22 10:01:37 +0000

    devel/py-pytest-plus: add missing build dependency
    
    Not listed in upstream's pyproject.toml but definitely required to
    build the module.
---
 devel/py-pytest-plus/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/devel/py-pytest-plus/Makefile b/devel/py-pytest-plus/Makefile
index 8c991b79191e..60cef76a9f13 100644
--- a/devel/py-pytest-plus/Makefile
+++ b/devel/py-pytest-plus/Makefile
@@ -12,7 +12,8 @@ LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=63.0.0:devel/py-setuptools@${PY_FLAVOR} \
-		${PYTHON_PKGNAMEPREFIX}setuptools_scm>=7.0.5:devel/py-setuptools_scm@${PY_FLAVOR}
+		${PYTHON_PKGNAMEPREFIX}setuptools_scm>=7.0.5:devel/py-setuptools_scm@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=6.0.1:devel/py-pytest@${PY_FLAVOR}
 
 USES=		python:3.9+