summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorAndreas Herrmann <andreash87@gmx.ch>2016-11-28 15:41:28 +0100
committerAndreas Herrmann <andreash87@gmx.ch>2016-11-28 18:02:35 +0100
commit44177794d253ea189e9aa9cde102085e76034f81 (patch)
treebf7d2ac55055d99fb2819c120a3e2d0582b4d140 /pkgs/development/python-modules
parent21a5532c573a6e364cf03dff182ce73150c9e504 (diff)
downloadnixlib-44177794d253ea189e9aa9cde102085e76034f81.tar
nixlib-44177794d253ea189e9aa9cde102085e76034f81.tar.gz
nixlib-44177794d253ea189e9aa9cde102085e76034f81.tar.bz2
nixlib-44177794d253ea189e9aa9cde102085e76034f81.tar.lz
nixlib-44177794d253ea189e9aa9cde102085e76034f81.tar.xz
nixlib-44177794d253ea189e9aa9cde102085e76034f81.tar.zst
nixlib-44177794d253ea189e9aa9cde102085e76034f81.zip
matplotlib: Fix "attribute ‘tkinter’ missing"
`tkinter` is not part of `python`, but of `pythonPackages`.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/matplotlib/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix
index a9dced9b6c4a..5ba813deba60 100644
--- a/pkgs/development/python-modules/matplotlib/default.nix
+++ b/pkgs/development/python-modules/matplotlib/default.nix
@@ -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 ] ++