Interesting, my fairly large django project uses none of those. Instead, the addons we consider to be critical are these these:<p><pre><code> django-debreach
django-redis
jinja2
pytz
</code></pre>
Redis for queues and caching, debreach to secure the CSRF tokens and vary your content length to avoid the BREACH vulnerability. jinja2 for doing templates outside of returning data, and pytz so you can use timezones in your data models.<p>I also recommend installing `flup` and running via fastcgi, but that's open to interpretation.