blob: b5c693dc32e31e8afb03dd7e0151a1e7fec1665a (
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 python3-webencodings
5
6 name=python3-aiofiles
7 version=0.7.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 poetry build --format wheel
14 PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG --ignore-installed --no-deps dist/*.whl
15
16 find $PKG -iname "*INSTALLER*" -delete
17 }
|