diff --git a/builds/runtimes/python-2.4.4 b/builds/runtimes/python-2.4.4
new file mode 100755
index 0000000000000000000000000000000000000000..84addd6f76dffc44011cdf0ceb00b0b278f36cda
--- /dev/null
+++ b/builds/runtimes/python-2.4.4
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+# Protect 2.4 builds from parent Python (causes segfault during build).
+unset LANG PYTHONHOME PYTHONPATH
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/2.4.4/Python-2.4.4.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.4.4 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.4.5 b/builds/runtimes/python-2.4.5
new file mode 100755
index 0000000000000000000000000000000000000000..b4555d0e115c18506347bf4ff721fa5603e3d315
--- /dev/null
+++ b/builds/runtimes/python-2.4.5
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+# Protect 2.4 builds from parent Python (causes segfault during build).
+unset LANG PYTHONHOME PYTHONPATH
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/2.4.5/Python-2.4.5.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.4.5 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install
diff --git a/builds/runtimes/python-2.4.6 b/builds/runtimes/python-2.4.6
new file mode 100755
index 0000000000000000000000000000000000000000..ffebad19ffdc29ef25e97516776be4ddf923f5f3
--- /dev/null
+++ b/builds/runtimes/python-2.4.6
@@ -0,0 +1,18 @@
+#!/usr/bin/env bash
+# Build Path: /app/.heroku/python/
+# Build Deps: libraries/sqlite
+
+OUT_PREFIX=$1
+
+# Protect 2.4 builds from parent Python (causes segfault during build).
+unset LANG PYTHONHOME PYTHONPATH
+
+echo "Building Python..."
+SOURCE_TARBALL='http://python.org/ftp/python/2.4.6/Python-2.4.6.tgz'
+curl -L $SOURCE_TARBALL | tar xz
+mv Python-2.4.6 src
+cd src
+
+./configure --prefix=$OUT_PREFIX
+make
+make install