Following http://stackoverflow.com/questions/15621048/how-can-i-satisfy-an-import-of-direct-to-template I added:
from django.views.generic import TemplateView
and changed url definition to:
('^$', TemplateView.as_view(template_name='home.html')),
and it fixed this issue.