contrib/python3-virtualenv/Pkgfile

17 lines
608 B
Plaintext
Raw Normal View History

# Description: Virtual Python Environment builder
# URL: https://github.com/pypa/virtualenv/
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-08-12 22:40:57 +02:00
# Depends on: python3-appdirs python3-backports_entry-points-selectable python3-distlib python3-filelock python3-platformdirs python3-six
name=python3-virtualenv
2023-10-24 18:26:07 +02:00
version=20.24.6
release=1
source=(https://pypi.org/packages/source/v/virtualenv/virtualenv-$version.tar.gz)
build() {
cd virtualenv-$version
2022-04-11 16:06:06 +02:00
2023-02-10 08:18:38 +01:00
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
}