Vielleicht möchten Sie in django-dbarray auf github nachsehen. Es fügt Unterstützung für Postgresql-Array-Felder hinzu.
Ich habe es noch nie benutzt, aber es sieht so aus, als müssten Sie nur Folgendes tun:
from django.db import model
import dbarray
class ProfilingTestRun(models.Model):
function = models.CharField(max_length=64)
runtimes = dbarray.FloatArrayField()