Unverified Commit c43fbe04 authored by Kerstin Humm's avatar Kerstin Humm
Browse files

python3Packages.fontforge: disable for python 3.9 and older

parent 73ff0bcb
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -4538,10 +4538,12 @@ self: super: with self; {
  fontfeatures = callPackage ../development/python-modules/fontfeatures { };
  fontforge = toPythonModule (pkgs.fontforge.override {
  fontforge = disabledIf
    (pythonOlder "3.10")
    (toPythonModule (pkgs.fontforge.override {
      withPython = true;
      inherit python;
  });
    }));
  fontmath = callPackage ../development/python-modules/fontmath { };