v4.7.5: Bug Fixes - Fix handling of string and byte values in clone_with and clone_deep_with when a customizer is used. - Fix handling of non-indexable iterables in find and find_last.
23 lines
702 B
Makefile
23 lines
702 B
Makefile
# $NetBSD: Makefile,v 1.7 2019/05/22 21:00:04 adam Exp $
|
|
|
|
DISTNAME= pydash-4.7.5
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pydash/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/dgilland/pydash
|
|
COMMENT= Python utility libraries for doing stuff in a functional way
|
|
LICENSE= mit
|
|
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|