904d60a51a
Pretend is a library to make stubbing with Python easier. What is stubbing? Stubbing is a technique for writing tests. You may hear the term mixed up with mocks, fakes, or doubles. Basically a stub is an object that returns pre-canned responses, rather than doing any computation.
16 lines
438 B
Makefile
16 lines
438 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/03/31 08:18:37 wiz Exp $
|
|
|
|
DISTNAME= pretend-1.0.8
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://pypi.python.org/packages/source/p/pretend/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/pretend/
|
|
COMMENT= Library for stubbing in Python
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|