lyx: use python3

+3 -3
+3 -3
pkgs/applications/misc/lyx/default.nix
··· 1 - { fetchurl, lib, mkDerivation, pkg-config, python, file, bc 2 , qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost 3 }: 4 ··· 14 # LaTeX is used from $PATH, as people often want to have it with extra pkgs 15 nativeBuildInputs = [ pkg-config ]; 16 buildInputs = [ 17 - qtbase qtsvg python file/*for libmagic*/ bc 18 hunspell makeWrapper # enchant 19 ]; 20 ··· 31 32 # python is run during runtime to do various tasks 33 qtWrapperArgs = [ 34 - " --prefix PATH : ${python}/bin" 35 ]; 36 37 meta = with lib; {
··· 1 + { fetchurl, lib, mkDerivation, pkg-config, python3, file, bc 2 , qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost 3 }: 4 ··· 14 # LaTeX is used from $PATH, as people often want to have it with extra pkgs 15 nativeBuildInputs = [ pkg-config ]; 16 buildInputs = [ 17 + qtbase qtsvg python3 file/*for libmagic*/ bc 18 hunspell makeWrapper # enchant 19 ]; 20 ··· 31 32 # python is run during runtime to do various tasks 33 qtWrapperArgs = [ 34 + " --prefix PATH : ${python3}/bin" 35 ]; 36 37 meta = with lib; {