kicad: add python six package as dep

This is needed for python scripting support.
This commit is contained in:
Matt Huszagh 2019-11-09 22:30:57 -08:00 committed by Evils
parent 5bbe6be1a8
commit d40747ed2c

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, cmake, libGLU, libGL, zlib, wxGTK
{ lib, stdenv, fetchFromGitHub, cmake, libGLU_combined, zlib, wxGTK
, libX11, gettext, glew, glm, cairo, curl, openssl, boost, pkgconfig
, doxygen, pcre, libpthreadstubs, libXdmcp, makeWrapper, gnome3
, gsettings-desktop-schemas, librsvg, hicolor-icon-theme, lndir, cups
@ -95,7 +95,7 @@ stdenv.mkDerivation rec {
;
buildInputs = [
libGLU libGL zlib libX11 wxGTK pcre libXdmcp gettext
libGLU_combined zlib libX11 wxGTK pcre libXdmcp gettext
glew glm libpthreadstubs cairo curl openssl boost
]
++ optionals (scriptingSupport) [ swig python wxPython ]