Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions pkgs/development/python-modules/matplotlib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
fetchPypi,
buildPythonPackage,
isPyPy,
pythonAtLeast,
pythonOlder,

# build-system
Expand Down Expand Up @@ -53,8 +52,7 @@

# Tk
# Darwin has its own "MacOSX" backend, PyPy has tkagg backend and does not support tkinter
# tkinter fails to build on Python 3.11
enableTk ? (!stdenv.hostPlatform.isDarwin && !isPyPy && pythonAtLeast "3.12"),
enableTk ? (!stdenv.hostPlatform.isDarwin && !isPyPy),
tkinter,

# Qt
Expand Down
1 change: 0 additions & 1 deletion pkgs/development/python-modules/tkinter/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ buildPythonPackage {
pythonImportsCheck = [ "tkinter" ];

meta = {
broken = pythonOlder "3.12"; # tommath.h: No such file or directory
# Based on first sentence from https://docs.python.org/3/library/tkinter.html
description = "Standard Python interface to the Tcl/Tk GUI toolkit";
longDescription = ''
Expand Down
Loading