diff --git a/dev-python/html5lib/html5lib-0.999999999.recipe b/dev-python/html5lib/html5lib-0.999999999.recipe
new file mode 100644
index 000000000..f18d94ffa
--- /dev/null
+++ b/dev-python/html5lib/html5lib-0.999999999.recipe
@@ -0,0 +1,65 @@
+SUMMARY=" Python HTML parser/tokenizer based on the WHATWG HTML5 spec"
+DESCRIPTION="html5lib is a pure-python library for parsing HTML. It is \
+designed to conform to the WHATWG HTML specification, as is implemented by \
+all major web browsers."
+HOMEPAGE="http://github.com/html5lib"
+COPYRIGHT="2006-2013 James Graham and other contributors"
+LICENSE="MIT"
+REVISION="1"
+SOURCE_URI="http://github.com/html5lib/html5lib-python/archive/$portVersion.tar.gz"
+CHECKSUM_SHA256="05c0f1ba235776060ded5093c365483d50deacdd7cabc57b6996d6e2480a4626"
+SOURCE_DIR="html5lib-python-$portVersion"
+
+ARCHITECTURES="any"
+
+PROVIDES="
+ $portName = $portVersion
+ "
+REQUIRES="
+ haiku
+ "
+
+BUILD_REQUIRES="
+ haiku_devel
+ "
+
+PYTHON_PACKAGES=(python python3)
+PYTHON_VERSIONS=(2.7 3.6)
+for i in "${!PYTHON_PACKAGES[@]}"; do
+pythonPackage=${PYTHON_PACKAGES[i]}
+pythonVersion=${PYTHON_VERSIONS[$i]}
+eval "PROVIDES_${pythonPackage}=\"\
+ ${portName}_$pythonPackage = $portVersion\
+ \"; \
+REQUIRES_$pythonPackage=\"\
+ haiku\n\
+ six_$pythonPackage\n\
+ webencodings_$pythonPackage\n\
+ cmd:python$pythonVersion\
+ \""
+BUILD_REQUIRES="$BUILD_REQUIRES
+ setuptools_$pythonPackage
+ webencodings_$pythonPackage"
+BUILD_PREREQUIRES="$BUILD_PREREQUIRES
+ cmd:python$pythonVersion"
+done
+
+
+INSTALL()
+{
+ for i in "${!PYTHON_PACKAGES[@]}"; do
+ pythonPackage=${PYTHON_PACKAGES[i]}
+ pythonVersion=${PYTHON_VERSIONS[$i]}
+
+ python=python$pythonVersion
+ installLocation=$prefix/lib/$python/vendor-packages/
+ export PYTHONPATH=$installLocation:$PYTHONPATH
+ mkdir -p $installLocation
+ rm -rf build
+ $python setup.py build install \
+ --root=/ --prefix=$prefix
+
+ packageEntries $pythonPackage \
+ $prefix/lib/python*
+ done
+}