mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
matplotlib: Fix "attribute ‘tkinter’ missing"
`tkinter` is not part of `python`, but of `pythonPackages`.
This commit is contained in:
parent
21a5532c57
commit
44177794d2
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ buildPythonPackage rec {
|
|||
]
|
||||
++ stdenv.lib.optional enableGtk2 pygtk
|
||||
++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ]
|
||||
++ stdenv.lib.optionals enableTk [ python.tkinter tcl tk tkinter libX11 ];
|
||||
++ stdenv.lib.optionals enableTk [ tcl tk tkinter libX11 ];
|
||||
|
||||
patches =
|
||||
[ ./basedirlist.patch ] ++
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue