mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-09 12:52:06 +01:00
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
# Contributor: Michał Polański <michal@polanski.me>
|
|
# Maintainer: Michał Polański <michal@polanski.me>
|
|
pkgname=py3-httpcore
|
|
pkgver=1.0.4
|
|
pkgrel=1
|
|
pkgdesc="Minimal HTTP client"
|
|
url="https://www.encode.io/httpcore/"
|
|
license="BSD-3-Clause"
|
|
arch="noarch"
|
|
depends="
|
|
python3
|
|
py3-anyio
|
|
py3-certifi
|
|
py3-h11
|
|
py3-sniffio
|
|
"
|
|
makedepends="py3-gpep517 py3-hatchling"
|
|
checkdepends="
|
|
py3-h2
|
|
py3-hpack
|
|
py3-hyperframe
|
|
py3-pytest
|
|
py3-pytest-httpbin
|
|
py3-pytest-trio
|
|
py3-socksio
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://github.com/encode/httpcore/archive/$pkgver/py3-httpcore-$pkgver.tar.gz
|
|
remove-fancy-pypi-readme.patch
|
|
"
|
|
builddir="$srcdir/httpcore-$pkgver"
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$PWD/build/lib" pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/httpcore-$pkgver-py3-none-any.whl
|
|
}
|
|
|
|
sha512sums="
|
|
e618a562dbeb2229e9fdc8e63769415c7308614e120f24d0319e8fe9c96ed6de014fcc03ac376737c5791875bb82b2cc486247bfbf235afe11d48f09a2d2a701 py3-httpcore-1.0.4.tar.gz
|
|
ed30ba9568defdf3c9f5e821c576b1f1b088b3819d9f430049af68cace0e874278c7f75cafc446a7e9c0e39f7a9fbe12de11bce022b06ce2bce67e51952c3f8e remove-fancy-pypi-readme.patch
|
|
"
|