17 lines
561 B
Plaintext
17 lines
561 B
Plaintext
# Description: Functools like those found in stdlib
|
|
# URL: https://github.com/jaraco/jaraco.functools
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-more-itertools python3-setuptools-scm
|
|
|
|
name=python3-jaraco-functools
|
|
version=4.0.1
|
|
release=1
|
|
source=(https://pypi.org/packages/source/j/jaraco_functools/jaraco_functools-$version.tar.gz)
|
|
|
|
build() {
|
|
cd jaraco_functools-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|