mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
python3Packages.matplotlib: fix Tk
The refactor that happened in the same commit as the version bump somehow broke Tk support. This commit fixes the issue by moving tkinter to propagatedBuildInputs.
This commit is contained in:
parent
746efed6f8
commit
1e87c6534a
@ -135,7 +135,6 @@ buildPythonPackage rec {
|
||||
libX11
|
||||
tcl
|
||||
tk
|
||||
tkinter
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Cocoa
|
||||
];
|
||||
@ -167,6 +166,8 @@ buildPythonPackage rec {
|
||||
tornado
|
||||
] ++ lib.optionals enableNbagg [
|
||||
ipykernel
|
||||
] ++ lib.optionals enableTk [
|
||||
tkinter
|
||||
];
|
||||
|
||||
passthru.config = {
|
||||
|
Loading…
Reference in New Issue
Block a user