17 lines
530 B
Plaintext
17 lines
530 B
Plaintext
# Description: Low-level, pure Python DBus protocol wrapper
|
|
# URL: https://gitlab.com/takluyver/jeepney
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
|
|
|
name=python3-jeepney
|
|
version=0.8.0
|
|
release=1
|
|
source=(https://pypi.io/packages/source/j/jeepney/jeepney-$version.tar.gz)
|
|
|
|
build() {
|
|
cd jeepney-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
|
}
|