c3daba60d7
v0.8.0 (14 February 2017) +++++++++++++++++++++++++ - Added Fitbit compliance fix. - Fixed an issue where newlines in the response body for the access token request would cause errors when trying to extract the token. - Fixed an issue introduced in v0.7.0 where users passing ``auth`` to several methods would encounter conflicts with the ``client_id`` and ``client_secret``-derived auth. The user-supplied ``auth`` argument is now used in preference to those options.
22 lines
727 B
Makefile
22 lines
727 B
Makefile
# $NetBSD: Makefile,v 1.7 2017/02/20 10:00:08 wiz Exp $
|
|
|
|
DISTNAME= requests-oauthlib-0.8.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=r/requests-oauthlib/}
|
|
|
|
MAINTAINER= imil@NetBSD.org
|
|
HOMEPAGE= https://github.com/requests/requests-oauthlib
|
|
COMMENT= OAuthlib support for Python-Requests
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-requests>=2.2.0:../../devel/py-requests
|
|
DEPENDS+= ${PYPKGPREFIX}-oauthlib>=0.6.1:../../security/py-oauthlib
|
|
# BUILD_DEPENDS+=requests-mock
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
BUILD_DEPENDS+= ${PYPKGPREFIX}-pbr>=0.11:../../devel/py-pbr
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|