Unverified Commit ff589098 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #327893 from erictapen/fontforge

python3Packages.fontforge: disable for python 3.9 and older
parents afbd9afe c43fbe04
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -4536,10 +4536,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 { };