Files
MSYS2-packages/python-pytest/PKGBUILD
Christoph Reiter 0566eff63a Remove makedepends on python-wheel everywhere
setuptools no longer needs it for building wheels since v70.1.0
2024-08-16 14:03:27 +02:00

43 lines
1.2 KiB
Bash

# Maintainer: J. Peter Mugaas <jpmugaas@suddenlink.net>
pkgbase=python-pytest
pkgname=('python-pytest')
pkgver=8.2.2
pkgrel=3
provides=("python3-pytest")
replaces=("python3-pytest")
conflicts=("python3-pytest")
pkgdesc="Simple powerful testing with Python"
arch=('any')
license=('spdx:MIT')
url="https://pytest.org/"
msys2_repository_url="https://github.com/pytest-dev/pytest"
msys2_references=(
"anitya: 3765"
"pypi:pytest"
)
depends=('python'
'python-attrs'
'python-pluggy'
'python-packaging'
'python-iniconfig')
makedepends=('python-build'
'python-installer'
'python-setuptools'
'python-setuptools-scm')
source=("pytest-${pkgver}.tar.gz::https://github.com/pytest-dev/pytest/archive/${pkgver}.tar.gz")
sha256sums=('b723da0ef5c624aad539e65c6d5381289c84c2977045e365813338318474d433')
build() {
export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
cd "${srcdir}/pytest-${pkgver}"
/usr/bin/python -m build --wheel --skip-dependency-check --no-isolation
}
package() {
cd pytest-${pkgver}
/usr/bin/python -m installer --destdir="${pkgdir}" dist/*.whl
install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}