~dricottone/huttese-apk

ref: 48d4a42e9a31c22c03b912161784b859ba8ca9ab huttese-apk/sr.ht/py3-wheel/APKBUILD -rw-r--r-- 873 bytes
48d4a42e — Drew DeVault Remove unused grafana package 4 years ago
                                                                                
6b7c3cf6 Drew DeVault
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Maintainer: Drew DeVault <sir@cmpwn.com>
pkgname=py3-wheel
_pyname=wheel
pkgver=0.33.6
pkgrel=0
pkgdesc="A built-package format for Python."
url="https://pypi.org/project/wheel/"
arch="noarch"
license="MIT"
depends="python3"
makedepends="python3-dev py3-setuptools"
checkdepends="py3-pytest py3-pytest-cov"
_pypiprefix="${_pyname%${_pyname#?}}"
source="https://files.pythonhosted.org/packages/source/$_pypiprefix/$_pyname/$_pyname-$pkgver.tar.gz"
builddir="$srcdir/$_pyname-$pkgver"
options="!check" # https://github.com/pypa/wheel/issues/299

build() {
	python3 setup.py build
}

check() {
	PYTHONPATH=$PYTHONPATH:$builddir pytest-3
}

package() {
	python3 setup.py install --root="$pkgdir" --optimize=1
}

sha512sums="887020c543ce7720c37f4d52f3f482365203ccb232d29c780d5593758c60997ac5383ea4724d4dc0b7237e2366f3d98a28773c18d15d6f7e898721cd6ac94cc6  wheel-0.33.6.tar.gz"