blob: b250c824dc4a0121f8059b2bc6e8e1a2866af330 (
plain)
1 # Description: File support for asyncio
2 # URL: https://github.com/Tinche/aiofiles
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-poetry python3-tox
5
6 name=python3-aiofiles
7 version=0.8.0
8 release=1
9 source=(https://github.com/Tinche/aiofiles/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd aiofiles-$version
13 /usr/bin/poetry build --format wheel
14 /usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps dist/*.whl
15 }
|