mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
16 lines
439 B
Plaintext
Executable File
16 lines
439 B
Plaintext
Executable File
# description : Simple powerful testing with Python
|
|
# homepage : https://pytest.org/
|
|
# depends : python3-build python3-installer python3-wheel
|
|
|
|
name=python3-pytest
|
|
version=7.4.3
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/p/pytest/pytest-$version.tar.gz"
|
|
|
|
build() {
|
|
cd pytest-$version
|
|
CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
|
|
python3 setup.py install --root=$PKG
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|