python3Packages.fontforge: disable for python 3.9 and older

Addresses https://github.com/NixOS/nixpkgs/issues/327819
This commit is contained in:
Kerstin Humm 2024-07-17 13:31:43 +02:00
parent 73ff0bcbd3
commit c43fbe0474
No known key found for this signature in database
GPG Key ID: 40293358C7B9326B

View File

@ -4538,10 +4538,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 { };