Merge pull request #327893 from erictapen/fontforge

python3Packages.fontforge: disable for python 3.9 and older
This commit is contained in:
Martin Weinelt
2024-07-17 14:22:04 +02:00
committed by GitHub
+6 -4
View File
@@ -4536,10 +4536,12 @@ self: super: with self; {
fontfeatures = callPackage ../development/python-modules/fontfeatures { };
fontforge = toPythonModule (pkgs.fontforge.override {
withPython = true;
inherit python;
});
fontforge = disabledIf
(pythonOlder "3.10")
(toPythonModule (pkgs.fontforge.override {
withPython = true;
inherit python;
}));
fontmath = callPackage ../development/python-modules/fontmath { };