mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-29 17:02:56 +02:00
27 lines
959 B
Bash
27 lines
959 B
Bash
# Template file for 'python3-pyinfra'
|
|
pkgname=python3-pyinfra
|
|
version=3.4.1
|
|
revision=1
|
|
build_style=python3-pep517
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3 python3-Jinja2 python3-click python3-colorama python3-dateutil
|
|
python3-distro python3-docopt python3-gevent python3-paramiko python3-pywinrm
|
|
python3-six python3-yaml python3-packaging python3-typeguard
|
|
python3-setuptools"
|
|
checkdepends="${depends} python3-pytest python3-mock openssh sudo"
|
|
short_desc="Automate infrastructure super fast at massive scale"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="MIT"
|
|
homepage="https://pyinfra.com/"
|
|
changelog="https://github.com/Fizzadar/pyinfra/blob/HEAD/CHANGELOG.md"
|
|
distfiles="https://github.com/Fizzadar/pyinfra/archive/v${version}.tar.gz"
|
|
checksum=c2fff4dc1c45513180a7324db609d5b4d3a32d2765032f9daf6d441c83fbfe35
|
|
|
|
post_install() {
|
|
rm -r ${DESTDIR}/${py3_sitelib}/tests
|
|
vlicense LICENSE.md
|
|
}
|
|
|
|
do_check() {
|
|
pytest --disable-warnings
|
|
}
|