17 lines
586 B
Plaintext
17 lines
586 B
Plaintext
# Description: More routines for operating on iterables, beyond itertools
|
|
# URL: https://github.com/more-itertools/more-itertools
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
|
|
|
name=python3-more-itertools
|
|
version=10.2.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/m/more-itertools/more-itertools-$version.tar.gz)
|
|
|
|
build() {
|
|
cd more-itertools-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
|
}
|