2021-06-14 19:51:55 +00:00
|
|
|
# Description: Virtual Python Environment builder
|
|
|
|
# URL: https://github.com/pypa/virtualenv/
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2021-07-14 23:21:10 +02:00
|
|
|
# Depends on: python3-appdirs python3-backports_entry-points-selectable python3-distlib python3-filelock python3-pip python3-platformdirs python3-six
|
2021-06-14 19:51:55 +00:00
|
|
|
|
|
|
|
name=python3-virtualenv
|
2023-06-18 14:05:39 +02:00
|
|
|
version=20.23.1
|
2021-06-14 19:51:55 +00:00
|
|
|
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
|
2021-06-14 19:51:55 +00:00
|
|
|
}
|