mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-21 05:31:25 +02:00
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=py3-tox
|
|
_pkgname=${pkgname#py3-*}
|
|
pkgver=3.24.3
|
|
pkgrel=1
|
|
pkgdesc="virtualenv management and test command line tool"
|
|
options="!check" # Requires community/py3-pathlib2, and unpackaged flaky
|
|
url="https://tox.readthedocs.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-packaging
|
|
py3-pluggy
|
|
py3-py
|
|
py3-six
|
|
py3-virtualenv
|
|
py3-toml
|
|
py3-filelock
|
|
"
|
|
makedepends="py3-setuptools"
|
|
checkdepends="py3-pytest"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
replaces="py-tox" # Backwards compatibility
|
|
provides="py-tox=$pkgver-r$pkgrel" # Backwards compatibility
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py test
|
|
}
|
|
|
|
sha512sums="
|
|
506e733924892f8683e3038fd84b0f14623d6fae567c15700d105e67e314c2e031a7b48e345da4bb6273251f5b2247c19d2050e740eb7b3560cdad4079d08672 tox-3.24.3.tar.gz
|
|
"
|