29 lines
877 B
Bash
29 lines
877 B
Bash
# Template file for 'python3-pexpect'
|
|
pkgname=python3-pexpect
|
|
version=4.8.0
|
|
revision=2
|
|
wrksrc="pexpect-${version}"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-ptyprocess"
|
|
checkdepends="python3-pytest python3-ptyprocess mdocml"
|
|
short_desc="Python3 module for spawning child applications and controlling them"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="https://pexpect.readthedocs.io/"
|
|
distfiles="${PYPI_SITE}/p/pexpect/pexpect-${version}.tar.gz"
|
|
checksum=fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c
|
|
|
|
do_check() {
|
|
# the mdcocml is for test
|
|
# REPLWrapTestCase.test_pager_as_cat
|
|
python3 -m pytest
|
|
}
|
|
|
|
post_install() {
|
|
# drop asyncio stuff from python2
|
|
# https://github.com/pexpect/pexpect/issues/290
|
|
rm -f ${DESTDIR}/usr/lib/python$py3_ver/site-packages/pexpect/_async.py
|
|
vlicense LICENSE
|
|
}
|