of course it is salted (the part after "$6$" and before the "$hash" part, i.e. "52450745" for this very specific example is the salt) and the whole sha512crypt hash can be generated like this in python:
Code:
import crypt
print crypt.crypt ('hashcat', '$6$52450745')