That means you must install simplejson. On newer versions of python, it was included by default into python’s distribution, and renamed to json. So if you are on python 2.6+ you should change all instances of simplejson to json.
For a quick fix you could also edit the file and change the line:
import simplejson
to:
import json as simplejson
and hopefully things will work.