16 lines
518 B
Plaintext
16 lines
518 B
Plaintext
# Description: Unpadded Base64
|
|
# URL: https://pypi.python.org/pypi/unpaddedbase64/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-poetry
|
|
|
|
name=python3-unpaddedbase64
|
|
version=2.1.0
|
|
release=1
|
|
source=(https://github.com/matrix-org/python-unpaddedbase64/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd python-unpaddedbase64-$version
|
|
/usr/bin/poetry build --format wheel
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG --ignore-installed --no-deps dist/*.whl
|
|
}
|