forked from ports/contrib
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
# Description: File support for asyncio
|
|
# URL: https://github.com/Tinche/aiofiles
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-poetry python3-tox
|
|
|
|
name=python3-aiofiles
|
|
version=0.8.0
|
|
release=1
|
|
source=(https://github.com/Tinche/aiofiles/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd aiofiles-$version
|
|
/usr/bin/poetry build --format wheel
|
|
/usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps dist/*.whl
|
|
}
|