17 lines
539 B
Plaintext
17 lines
539 B
Plaintext
# Description: Generator-based operators for asynchronous iteration
|
|
# URL: https://github.com/vxgmichel/aiostream
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-typing_extensions python3-wheel
|
|
|
|
name=python3-aiostream
|
|
version=0.6.2
|
|
release=1
|
|
source=(https://pypi.org/packages/source/a/aiostream/aiostream-$version.tar.gz)
|
|
|
|
build() {
|
|
cd aiostream-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|