blob: 8317f1097c4fb72ad0e2dd4b0dec3a95f7bc8416 (
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-cleo python3-poetry python3-tox
5
6 name=python3-aiofiles
7 version=22.1.0
8 release=2
9 source=(https://github.com/Tinche/aiofiles/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd aiofiles-$version
13
14 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
15 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
16 }
|