In python, to make a Type 5 UUID we can simply do:
import uuid print uuid.uuid5(uuid.NAMESPACE_URL, \'my string\')
Looking through the java
In the case someone else needs a library that generates version 5 UUIDs.
UUID uuid = UuidCreator.getNameBasedSha1("google.com");
https://github.com/f4b6a3/uuid-creator