We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adc7650 commit f8d4aa5Copy full SHA for f8d4aa5
1 file changed
pkgs/top-level/python-packages.nix
@@ -3605,14 +3605,10 @@ in {
3605
3606
folium = callPackage ../development/python-modules/folium { };
3607
3608
- fontforge = (toPythonModule (pkgs.fontforge.override {
+ fontforge = disabledIf (!isPy3k) (toPythonModule (pkgs.fontforge.override {
3609
withPython = true;
3610
inherit python;
3611
- })).overrideAttrs (old: {
3612
- meta = old.meta // {
3613
- broken = isPy38;
3614
- };
3615
- });
+ }));
3616
3617
fonttools = callPackage ../development/python-modules/fonttools { };
3618
0 commit comments