17 lines
496 B
Plaintext
17 lines
496 B
Plaintext
# Description: File support for asyncio
|
|
# URL: https://github.com/Tinche/aiofiles
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-cleo python3-tox
|
|
|
|
name=python3-aiofiles
|
|
version=23.2.1
|
|
release=1
|
|
source=(https://github.com/Tinche/aiofiles/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd aiofiles-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|