mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
python3Packages.fontforge: disable for python 3.9 and older
Addresses https://github.com/NixOS/nixpkgs/issues/327819
This commit is contained in:
parent
73ff0bcbd3
commit
c43fbe0474
@ -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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user