I believe mod_wsgi is compiled against a specific version of python, so you need a version of mod_wsgi py3.4. Perhaps you can get it from your os package repository, or you can create it without too much drama. From memory, you will need gcc and python-dev packages (python3-dev?) To build.
Ok, quick google, for ubuntu 14.10: sudo apt-get install libapache2-mod-wsgi-py3 should install the mod_wsgi py3 version (you might want to uninstall the existing py2 version).
Adding a shebang line will not do any good since the python interpreter is already loaded before reading the wsgi.py script.
source share