17 lines
527 B
Plaintext
17 lines
527 B
Plaintext
# Description: supposedly makes exceptions handling and inspection easier
|
|
# URL: https://github.com/sdispater/crashtest
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-yaspin
|
|
|
|
name=python3-crashtest
|
|
version=0.4.1
|
|
release=1
|
|
source=(https://github.com/sdispater/crashtest/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd crashtest-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
|
}
|