django-social-auth implements a pipeline (this seems to be a new feature as it wasn't there when I was trying it out) that allows you to insert custom functions at certain steps in the process of authenticating. Check out the docs here, and an example pipline function here.
So you could write a function:
SOCIAL_AUTH_PIPELINE = (
'social_auth.backends.pipeline.social.social_auth_user',
'social_auth.backends.pipeline.associate.associate_by_email',
'social_auth.backends.pipeline.user.get_username',
'app.pipeline.custom_create_user',
'social_auth.backends.pipeline.social.associate_user',
'social_auth.backends.pipeline.social.load_extra_data',
'social_auth.backends.pipeline.user.update_user_details'
)
where your custom_create_user function wraps the default create_user and create the username according o your own needs:
from social_auth.backends.pipeline.user import create_user
def custom_create_user(request, *args, **kwargs):
user = *kwargs.get('user', None)
# Do something with username
return create_user(request, args, kwargs)