3b589fabb6
Bugs Fixed * When wrapping a @classmethod in a class used as a base class, when the method was called via the derived class type, the base class type was being passed for the cls argument instead of the derived class type through which the call was made. New Features * The C extension can be disabled at runtime by setting the environment variable WRAPT_DISABLE_EXTENSIONS. This may be necessary where there is currently a difference in behaviour between pure Python implementation and C extension and the C extension isn't having the desired result.
14 lines
439 B
Makefile
14 lines
439 B
Makefile
# $NetBSD: Makefile,v 1.5 2017/08/16 18:07:31 adam Exp $
|
|
|
|
DISTNAME= wrapt-1.10.11
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=w/wrapt/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/GrahamDumpleton/wrapt
|
|
COMMENT= Python module for decorators, wrappers and monkey patching
|
|
LICENSE= 2-clause-bsd
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|