setup_venv: Add missing build essential dependencies.

Apparently, c74a74dc74 introduced a bug
where we are no longer correctly depending on build-essential as part
of the Zulip development environment installation process.

Fixes #1111.
This commit is contained in:
Tim Abbott
2016-06-24 09:09:36 -07:00
parent 8cecb37743
commit dfd8fede4a

View File

@@ -18,6 +18,7 @@ if False:
from typing import List, Optional
VENV_DEPENDENCIES = [
"build-essential",
"libffi-dev",
"libfreetype6-dev",
"libldap2-dev",
@@ -25,6 +26,7 @@ VENV_DEPENDENCIES = [
"postgresql-server-dev-all",
"python3-dev", # Needed to install typed-ast dependency of mypy
"python-dev",
"python-pip",
"python-virtualenv",
]