Is there a test module that needs to be in place that pip does not import?
$ pip install vcspull
$ vcspull
from test import support
ImportError: No module named 'test'
$ pip install test
$ vcspull
from test import support
ImportError: cannot import name 'support'