pkgsrc/devel/py-ddt/Makefile
adam b2a9e7d4fc py-ddt: updated to 1.4.1
1.4.1:
Due to numerous problems removed nose dependency completely in favor of pytest.
Fixed compatibility with Python 2.7

1.4.0:
Added support for index-only test names

1.3.1:
Switched from Travis to Github Actions for builds and release upload.

1.3.0:
Added the ability to specify the YAML loader in the file_data decorator
Dropped Python 3.4 support

1.2.2:
Merge pull request 76 from Harmon758/url-updates
Merge pull request 74 from carlwgeorge/stdlib-mock
2020-12-04 09:23:18 +00:00

21 lines
538 B
Makefile

# $NetBSD: Makefile,v 1.6 2020/12/04 09:23:18 adam Exp $
DISTNAME= ddt-1.4.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= devel python
MASTER_SITES= ${MASTER_SITE_PYPI:=d/ddt/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/txels/ddt
COMMENT= Data-Driven/Decorated Tests
LICENSE= mit
.include "../../lang/python/pyversion.mk"
.if ${_PYTHON_VERSION} == 27
DEPENDS+= ${PYPKGPREFIX}-enum34-[0-9]*:../../devel/py-enum34
.endif
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"