1.10.0: Add support for the recently added assert_called method in Python 3.6 and mock-2.0.
26 lines
777 B
Makefile
26 lines
777 B
Makefile
# $NetBSD: Makefile,v 1.10 2018/05/02 07:33:45 adam Exp $
|
|
|
|
DISTNAME= pytest-mock-1.10.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-mock/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pytest-dev/pytest-mock
|
|
COMMENT= Thin-wrapper around the mock package for easier use with py.test
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-test>=2.7:../../devel/py-test
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm-[0-9]*:../../devel/py-setuptools_scm
|
|
|
|
.include "../../lang/python/pyversion.mk"
|
|
|
|
.if ${PYVERSSUFFIX} == "2.7"
|
|
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
.endif
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && py.test-${PYVERSSUFFIX}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|