mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python.pkgs.fontforge: disable with Python 2
Since the latest update, fontforge no longer supports building with Python 2. Let's prevent failing builds.
This commit is contained in:
parent
af5765b0dc
commit
ce55b09ad5
@ -3996,10 +3996,10 @@ in {
|
||||
|
||||
folium = callPackage ../development/python-modules/folium { };
|
||||
|
||||
fontforge = toPythonModule (pkgs.fontforge.override {
|
||||
fontforge = disabledIf (!isPy3k) (toPythonModule (pkgs.fontforge.override {
|
||||
withPython = true;
|
||||
inherit python;
|
||||
});
|
||||
}));
|
||||
|
||||
fonttools = callPackage ../development/python-modules/fonttools { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user