29 lines
877 B
Bash
29 lines
877 B
Bash
# Template file for 'python3-pexpect'
|
|
pkgname=python3-pexpect
|
|
version=4.7.0
|
|
revision=4
|
|
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=9e2c1fd0e6ee3a49b28f95d4b33bc389c89b20af6a1255906e90ff1262ce62eb
|
|
|
|
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
|
|
}
|