mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-16 19:22:00 +02:00
34 lines
905 B
Plaintext
34 lines
905 B
Plaintext
# Maintainer: Noel Kuntze <noel.kuntze@contauro.com>
|
|
pkgname=py3-aioitertools
|
|
pkgdesc="Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables"
|
|
pkgver=0.11.0
|
|
pkgrel=0
|
|
arch="noarch"
|
|
url="https://github.com/omnilib/aioitertools"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel py3-flit-core"
|
|
subpackages="$pkgname-pyc"
|
|
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/omnilib/aioitertools/archive/refs/tags/v$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir"/aioitertools-$pkgver
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python -m unittest -v aioitertools.tests
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
0ddc884004c297cd08872b38bf3788fdf65846935e9c576638fae477ab920bb1e5f7197e3f9e668e55634f4df464348518acc55c9581b9210915af4cead98545 py3-aioitertools-0.11.0.tar.gz
|
|
"
|