17 lines
587 B
Plaintext
17 lines
587 B
Plaintext
# Description: Various helpers to pass trusted data to untrusted environments
|
|
# URL: https://github.com/pallets/itsdangerous/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-flit-core python3-installer python3-wheel
|
|
|
|
name=python3-itsdangerous
|
|
version=2.2.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/i/itsdangerous/itsdangerous-$version.tar.gz)
|
|
|
|
build() {
|
|
cd itsdangerous-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|