blob: 1a2dbaa0edc88d7f8019dce4bc375c8cca0b302d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=pyprojecthooks
version=1.2.0
build_no=1
upstream="https://github.com/pypa/pyproject-hooks/archive/refs/tags/v${version}.tar.gz"
extras=(
https://files.pythonhosted.org/packages/bd/24/12818598c362d7f300f18e74db45963dbcb85150324092410c8b49405e42/pyproject_hooks-1.2.0-py3-none-any.whl
)
cddir="pyproject-hooks-${version}"
function do_configure {
cp /build/pyproject_hooks-1.2.0-py3-none-any.whl .
}
function do_build {
echo "no build"
}
function do_install {
python3 -m zipfile -e pyproject_hooks-1.2.0-py3-none-any.whl "${PY_SITE_PACKAGES}"
}
|