forked from mirrors/nixpkgs
Merge pull request #51344 from timokau/sagenb-matplotlib-fix
pythonPackages.matplotlib: enable tk backend by default
This commit is contained in:
commit
06f883f7a0
|
@ -5,7 +5,8 @@
|
||||||
, enableGhostscript ? false, ghostscript ? null, gtk3
|
, enableGhostscript ? false, ghostscript ? null, gtk3
|
||||||
, enableGtk2 ? false, pygtk ? null, gobject-introspection
|
, enableGtk2 ? false, pygtk ? null, gobject-introspection
|
||||||
, enableGtk3 ? false, cairo
|
, enableGtk3 ? false, cairo
|
||||||
, enableTk ? false, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
|
# darwin has its own "MacOSX" backend
|
||||||
|
, enableTk ? !stdenv.isDarwin, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
|
||||||
, enableQt ? false, pyqt4
|
, enableQt ? false, pyqt4
|
||||||
, libcxx
|
, libcxx
|
||||||
, Cocoa
|
, Cocoa
|
||||||
|
|
|
@ -4,7 +4,8 @@
|
||||||
, enableGhostscript ? true, ghostscript ? null, gtk3
|
, enableGhostscript ? true, ghostscript ? null, gtk3
|
||||||
, enableGtk2 ? false, pygtk ? null, gobject-introspection
|
, enableGtk2 ? false, pygtk ? null, gobject-introspection
|
||||||
, enableGtk3 ? false, cairo
|
, enableGtk3 ? false, cairo
|
||||||
, enableTk ? false, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
|
# darwin has its own "MacOSX" backend
|
||||||
|
, enableTk ? !stdenv.isDarwin, tcl ? null, tk ? null, tkinter ? null, libX11 ? null
|
||||||
, enableQt ? false, pyqt4
|
, enableQt ? false, pyqt4
|
||||||
, libcxx
|
, libcxx
|
||||||
, Cocoa
|
, Cocoa
|
||||||
|
|
Loading…
Reference in a new issue