blob: dcac4d3f31b7a6ad650c9c287dbb6c817130bb9c (
plain)
1 # Description: Design and implementation for a planned importlib.resources
2 # URL: https://github.com/python/importlib_resources
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-build python3-installer python3-toml python3-zipp
5
6 name=python3-importlib_resources
7 version=5.10.2
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/i/importlib_resources/importlib_resources-$version.tar.gz)
10
11 build() {
12 cd importlib_resources-$version
13 /usr/bin/python3 -m build \
14 --wheel \
15 --skip-dependency-check \
16 --no-isolation
17 /usr/bin/python3 -m installer \
18 --compile-bytecode 0 \
19 --destdir=$PKG dist/*.whl
20 }
|