I am going to accept your package, but there are some issues that should be addressed in a future upload:
1. In debian/copyright, it would be good to be clear about which LGPL version is relevant. First, upstream probably needs to sort it out (LICENSE file is LGPL-3, header in __init__.py is LGPL-2+. I take that to mean LGPL-3, but it might be worth asking them to resolve the disconnect. 2. In debian/control, python:Provides is obsolete in general and was never used for python3. It should be deleted. 3. debian/pycompat is obsolete and was never used with python3. It should be deleted. 4. In debian/rules, rm -f ooolib/__pycache__/__init__.cpython-37.pyc will fail as soon as the supported python3 versions change. Something like rm -f ooolib/__pycache__ would be better. 5. In general, compat 5 is deprecated. This should be updated. Scott K