mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
# Maintainer: Hugo Osvaldo Barrera <hugo@whynothugo.nl>
|
|
pkgname=py3-pip-tools
|
|
pkgver=7.4.1
|
|
pkgrel=1
|
|
pkgdesc="A set of tools to keep your pinned Python dependencies fresh."
|
|
url="https://pip-tools.rtfd.io"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
source="https://files.pythonhosted.org/packages/source/p/pip-tools/pip-tools-$pkgver.tar.gz"
|
|
depends="
|
|
py3-build
|
|
py3-click
|
|
py3-pip
|
|
"
|
|
makedepends="
|
|
py3-gpep517
|
|
py3-installer
|
|
py3-setuptools_scm
|
|
py3-wheel
|
|
"
|
|
checkdepends="py3-pytest-xdist"
|
|
subpackages="$pkgname-pyc"
|
|
builddir="$srcdir/pip-tools-$pkgver"
|
|
# requires every build backend in the universe
|
|
options="!check"
|
|
|
|
build() {
|
|
SETUPTOOLS_SCM_PRETEND_VERSION="$pkgver" \
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
|
.testenv/bin/python3 -m installer .dist/*.whl
|
|
.testenv/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
5c3b7acebb245311faeed21ec15641a2d609d16e588ed2cf8fc048607c60aae5025d8e9caa03dd0aa36bd74362af3a437ffe3483ceaeda97712b96d9f252aa63 pip-tools-7.4.1.tar.gz
|
|
"
|