blob: ab142de36da4f1056fd5a782523b72361709e9f3 (
plain)
1 # Description: python bindings for the redis KV store
2 # URL: https://github.com/andymccurdy/redis-py
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-async-timeout python3-build python3-installer python3-typing_extensions
5
6 name=redis-py3
7 version=4.3.4
8 release=1
9 source=(https://github.com/redis/redis-py/archive/v$version/$name-$version.tar.gz)
10
11 build() {
12 cd redis-py-$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 }
|