17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
# Description: ruyaml is a fork of ruamel.yaml
|
|
# URL: https://github.com/pycontribs/ruyaml
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-distro python3-setuptools-scm
|
|
|
|
name=python3-ruyaml
|
|
version=0.91.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/r/ruyaml/ruyaml-$version.tar.gz)
|
|
|
|
build() {
|
|
cd ruyaml-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|