17 lines
526 B
Plaintext
17 lines
526 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
|
||
|
poetry build --format wheel
|
||
|
export PYTHONHASHSEED=0
|
||
|
PIP_CONFIG_FILE=/dev/null pip3 install --isolated --root=$PKG --ignore-installed --no-deps dist/*.whl
|
||
|
}
|