On 09/23/2016 10:34 AM, Steinar H. Gunderson wrote: > Package: python3-google-apputils > Version: 0.4.1-1 > Severity: grave > > Hi, > > python3-google-apputils packages /usr/bin/python3-google-api-tools, but > completely fails to declare the dependencies it needs: > > pannekake:~> /usr/bin/python3-google-api-tools > Traceback (most recent call last): > File "/usr/bin/python3-google-api-tools", line 6, in <module> > from googlecloudapis.apitools.base.py.base_cli import main > File > "/usr/lib/python3/dist-packages/googlecloudapis/apitools/base/py/__init__.py", > line 4, in <module> > from googlecloudapis.apitools.base.py.base_api import * > File > "/usr/lib/python3/dist-packages/googlecloudapis/apitools/base/py/base_api.py", > line 4, in <module> > import httplib > ImportError: No module named 'httplib' > > > The same goes for the Python 2 version. It holds in both stable and unstable > (they have the same version).
If I'm not mistaking, that's not what's going on. httplib is a standard Python 2.7 library, but in Python 3, it was renamed as "http". So here, we're in a case of not-good-enough Python 3 support. However, you've opened a bug against the wrong package. It's python3-googlecloudapis which you really wanted. Cheers, Thomas Goirand (zigo)