forked from ports/contrib
17 lines
520 B
Plaintext
17 lines
520 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 python3-webencodings
|
||
|
|
||
|
name=python3-aiofiles
|
||
|
version=0.7.0
|
||
|
release=1
|
||
|
source=(https://github.com/Tinche/aiofiles/archive/v$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd aiofiles-$version
|
||
|
poetry build --format wheel
|
||
|
tox -e py39
|
||
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG --ignore-installed --no-deps dist/*.whl
|
||
|
}
|