New comment by kruceter on void-packages repository https://github.com/void-linux/void-packages/issues/40475#issuecomment-1312300309 Comment: I could reproduce this traceback. The fault lays with the outdated python3-automat (symlink to python-automat). Updating it to 22.10.0 solved this issue for me. @mtroberts, you can use the patch below to build that package locally until it is updated in the repository: ```diff diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template index 8b3f99f196..42efed39d3 100644 --- a/srcpkgs/python-automat/template +++ b/srcpkgs/python-automat/template @@ -1,7 +1,7 @@ # Template file for 'python-automat' pkgname=python-automat -version=20.2.0 -revision=5 +version=22.10.0 +revision=1 build_style=python-module hostmakedepends="python-setuptools python3-setuptools" depends="python-setuptools python-attrs python-six" @@ -11,7 +11,7 @@ maintainer="Alessio Sergi " license="MIT" homepage="https://github.com/glyph/Automat" distfiles="${PYPI_SITE}/A/Automat/Automat-${version}.tar.gz" -checksum=7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33 +checksum=e56beb84edad19dcc11d30e8d9b895f75deeb5ef5e96b84a467066b3b84bb04e alternatives="automat:automat-visualize:/usr/bin/automat-visualize2" pre_build() { ```