2022-07-10 19:43:55 +02:00
|
|
|
# Description: A low-level library for installing from a Python wheel distribution
|
|
|
|
# URL: https://github.com/pypa/installer
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-08 16:25:44 +02:00
|
|
|
# Depends on: python3-pip
|
2022-07-10 19:43:55 +02:00
|
|
|
|
|
|
|
name=python3-installer
|
2023-03-25 10:34:20 +01:00
|
|
|
version=0.7.0
|
2022-07-10 19:43:55 +02:00
|
|
|
release=1
|
|
|
|
source=(https://pypi.org/packages/source/i/installer/installer-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd installer-$version
|
|
|
|
|
2023-04-02 19:45:13 +02:00
|
|
|
PIP_CONFIG_FILE=/dev/null /usr/bin/pip3 install --isolated --root=$PKG \
|
2023-04-08 16:25:44 +02:00
|
|
|
--ignore-installed --no-deps .
|
2022-07-10 19:43:55 +02:00
|
|
|
}
|