···530attribute set is created for each available Python interpreter. The available
531sets are
532533-* `pkgs.python26Packages`
534* `pkgs.python27Packages`
535* `pkgs.python34Packages`
536* `pkgs.python35Packages`
···530attribute set is created for each available Python interpreter. The available
531sets are
5320533* `pkgs.python27Packages`
534* `pkgs.python34Packages`
535* `pkgs.python35Packages`
+1
pkgs/top-level/all-packages.nix
···66366637 # Python interpreters. All standard library modules are included except for tkinter, which is
6638 # available as `pythonPackages.tkinter` and can be used as any other Python package.
06639 python = python2;
6640 python2 = python27;
6641 python3 = python36;
···66366637 # Python interpreters. All standard library modules are included except for tkinter, which is
6638 # available as `pythonPackages.tkinter` and can be used as any other Python package.
6639+ # When switching these sets, please update docs at ../../doc/languages-frameworks/python.md
6640 python = python2;
6641 python2 = python27;
6642 python3 = python36;