e186491384
0.7.3 ----- * Support binary bodies in responses * fix flake8 * move RequestInfo to compat * drop \`.travis.yml\` * basic CI using github actions add codecov and add flake8 * basic CI using github actions * basic CI using github actions * basic CI using github actions * basic CI using github actions * basic CI using github actions * (feat) add unit tests * (feat) allow for callbacks to be called before raising of exception * add \`py.typed\` (PEP 561) * Fix setuptools warnings by replacing dashes in keys with underscores
25 lines
781 B
Makefile
25 lines
781 B
Makefile
# $NetBSD: Makefile,v 1.4 2022/01/21 11:36:24 adam Exp $
|
|
|
|
DISTNAME= aioresponses-0.7.3
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/aioresponses/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/pnuckowski/aioresponses
|
|
COMMENT= Mock out requests made by ClientSession from aiohttp package
|
|
LICENSE= mit
|
|
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr
|
|
DEPENDS+= ${PYPKGPREFIX}-aiohttp>=2.0.0:../../www/py-aiohttp
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-ddt>=1.4.1:../../devel/py-ddt
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
PYSETUPTESTTARGET= pytest
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|