New comment by sgn on void-packages repository https://github.com/void-linux/void-packages/pull/43497#issuecomment-1522014357 Comment: I would argue that the new behaviour is more correct :D Anyway, this could fix the test: ```diff diff --git a/srcpkgs/python3-Babel/template b/srcpkgs/python3-Babel/template index 46530ba596e..9255e8537f4 100644 --- a/srcpkgs/python3-Babel/template +++ b/srcpkgs/python3-Babel/template @@ -4,8 +4,7 @@ version=2.12.1 revision=1 build_style=python3-module hostmakedepends="python3-setuptools" -depends="python3-pytz" -checkdepends="python3-pytest python3-pytz python3-freezegun" +checkdepends="python3-pytest python3-freezegun faketime" short_desc="Tools for internationalizing Python applications (Python3)" maintainer="Orphaned " license="BSD-3-Clause" @@ -14,6 +13,14 @@ changelog="https://raw.githubusercontent.com/python-babel/babel/master/CHANGES.r distfiles="${PYPI_SITE}/B/Babel/Babel-${version}.tar.gz" checksum=cc2d99999cd01d44420ae725a21c9e3711b3aadc7976d6147f622d8581963455 +do_check() { + # If you see this is hanging, remove faketime + # it has problem with python's time.sleep + LD_PRELOAD=/usr/lib/faketime/libfaketime.so.1 \ + FAKETIME="@2023-01-01 00:00:00" \ + python3 -m pytest +} + post_install() { vlicense LICENSE # for compatibility ``` The 998 patch is no longer needed, too. http://ix.io/4ugi