···2525 patchelf --set-rpath $new_rpath $out/${py.sitePackages}/_tkinter*
2626 '';
27272828- meta = py.meta;
2828+ meta = py.meta // {
2929+ # Based on first sentence from https://docs.python.org/3/library/tkinter.html
3030+ description = "The standard Python interface to the Tcl/Tk GUI toolkit";
3131+ longDescription = ''
3232+ The tkinter package (“Tk interface”) is the standard Python interface to
3333+ the Tcl/Tk GUI toolkit. Both Tk and tkinter are available on most Unix
3434+ platforms, including macOS, as well as on Windows systems.
3535+3636+ Running python -m tkinter from the command line should open a window
3737+ demonstrating a simple Tk interface, letting you know that tkinter is
3838+ properly installed on your system, and also showing what version of
3939+ Tcl/Tk is installed, so you can read the Tcl/Tk documentation specific to
4040+ that version.
4141+4242+ Tkinter supports a range of Tcl/Tk versions, built either with or without
4343+ thread support. The official Python binary release bundles Tcl/Tk 8.6
4444+ threaded. See the source code for the _tkinter module for more
4545+ information about supported versions.
4646+4747+ Tkinter is not a thin wrapper, but adds a fair amount of its own logic to
4848+ make the experience more pythonic. This documentation will concentrate on
4949+ these additions and changes, and refer to the official Tcl/Tk
5050+ documentation for details that are unchanged.
5151+ '';
5252+ };
29533054}