View | Details | Raw Unified | Return to bug 260880 | Differences between
and this patch

Collapse All | Expand All

(-)b/www/Makefile (+1 lines)
Lines 1671-1676 Link Here
1671
    SUBDIR += py-httpretty
1671
    SUBDIR += py-httpretty
1672
    SUBDIR += py-httptools
1672
    SUBDIR += py-httptools
1673
    SUBDIR += py-httpx
1673
    SUBDIR += py-httpx
1674
    SUBDIR += py-httpx-oauth
1674
    SUBDIR += py-httpx-socks
1675
    SUBDIR += py-httpx-socks
1675
    SUBDIR += py-httpx013
1676
    SUBDIR += py-httpx013
1676
    SUBDIR += py-hyper
1677
    SUBDIR += py-hyper
(-)b/www/py-httpx-oauth/Makefile (+28 lines)
Added Link Here
1
PORTNAME=	httpx-oauth
2
DISTVERSION=	0.4.0
3
CATEGORIES=	www devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
7
MAINTAINER=	meka@tilda.center
8
COMMENT=	Async OAuth client using HTTPX
9
10
LICENSE=	MIT
11
12
RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}httpx>=0:www/py-httpx@${PY_FLAVOR} \
13
		${PYTHON_PKGNAMEPREFIX}respx>=0:www/py-respx@${PY_FLAVOR} \
14
		${PYTHON_PKGNAMEPREFIX}typing-extensions>=0:devel/py-typing-extensions@${PY_FLAVOR}
15
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
16
17
USES=		python:3.6+
18
USE_PYTHON=	autoplist distutils
19
20
TEST_ENV=	PYTHONPATH=${WRKSRC}/src
21
22
NO_ARCH=	yes
23
24
# Tests fail with current ports
25
# do-test:
26
	# cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts=
27
28
.include <bsd.port.mk>
(-)b/www/py-httpx-oauth/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1641123504
2
SHA256 (httpx-oauth-0.4.0.tar.gz) = a66f8ca62161a97af4b097af46cb0ec43fb8686264518f34d141363ebd1dab6e
3
SIZE (httpx-oauth-0.4.0.tar.gz) = 15515
(-)b/www/py-httpx-oauth/pkg-descr (+4 lines)
Added Link Here
1
A generic OAuth2 class is provided to adapt to any OAuth2-compliant service.
2
Utilities are provided to ease the integration of an OAuth2 process in FastAPI.
3
4
WWW: https://github.com/frankie567/httpx-oauth

Return to bug 260880