docker: add python stdlib dependency (required by keycodemapdb)
commite58c1f9b35e81dec90c3d483b57351256cecfc41
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Tue, 31 Oct 2017 12:28:24 +0000 (31 09:28 -0300)
committerAlex Bennée <alex.bennee@linaro.org>
Thu, 2 Nov 2017 11:46:41 +0000 (2 11:46 +0000)
treead5dd32f9d449ed92d8552c9f2faedb0ed3c6cb7
parentd2b9d71432687eef947f243a57409381151701d5
docker: add python stdlib dependency (required by keycodemapdb)

Since 927128222b0a QEMU depends of keycodemapdb, which uses the python 'csv'
module from stdlib to parse keymaps.csv.

Without this package the build fails:

    GEN     ui/input-keymap-linux-to-qcode.c
  Traceback (most recent call last):
    File "ui/keycodemapdb/tools/keymap-gen", line 15, in <module>
      import csv
  ImportError: No module named csv
    GEN     ui/input-keymap-qcode-to-qnum.c
  Traceback (most recent call last):
    File "ui/keycodemapdb/tools/keymap-gen", line 15, in <module>
      import csv
  ImportError: No module named csv
  [...]
    CC      ui/input-keymap.o
  ui/input-keymap.c:8:44: fatal error: ui/input-keymap-linux-to-qcode.c: No such file or directory
  make: *** [ui/input-keymap.o] Error 1

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
tests/docker/dockerfiles/debian8-mxe.docker