python36: remove

+2 -23
+1 -2
doc/languages-frameworks/python.section.md
··· 765 765 ### Interpreters {#interpreters} 766 766 767 767 Versions 2.7, 3.6, 3.7, 3.8 and 3.9 of the CPython interpreter are available as 768 - respectively `python27`, `python36`, `python37`, `python38` and `python39`. The 768 + respectively `python27`, `python37`, `python38` and `python39`. The 769 769 aliases `python2` and `python3` correspond to respectively `python27` and 770 770 `python39`. The attribute `python` maps to `python2`. The PyPy interpreters 771 771 compatible with Python 2.7 and 3 are available as `pypy27` and `pypy3`, with ··· 830 830 sets are 831 831 832 832 * `pkgs.python27Packages` 833 - * `pkgs.python36Packages` 834 833 * `pkgs.python37Packages` 835 834 * `pkgs.python38Packages` 836 835 * `pkgs.python39Packages`
-13
pkgs/development/interpreters/python/default.nix
··· 154 154 inherit passthruFun; 155 155 }; 156 156 157 - python36 = callPackage ./cpython { 158 - self = python36; 159 - sourceVersion = { 160 - major = "3"; 161 - minor = "6"; 162 - patch = "15"; 163 - suffix = ""; 164 - }; 165 - sha256 = "14ax2ca7c8hs7zpz5k4ha12wy3z2f8wwm6z4j38kslfxsv6xfa3f"; 166 - inherit (darwin) configd; 167 - inherit passthruFun; 168 - }; 169 - 170 157 python37 = callPackage ./cpython { 171 158 self = python37; 172 159 sourceVersion = {
+1 -8
pkgs/top-level/all-packages.nix
··· 13117 13117 bluezSupport = true; 13118 13118 x11Support = true; 13119 13119 }; 13120 - python36Full = python36.override { 13121 - self = python36Full; 13122 - pythonAttr = "python36Full"; 13123 - bluezSupport = true; 13124 - x11Support = true; 13125 - }; 13126 13120 python37Full = python37.override { 13127 13121 self = python37Full; 13128 13122 pythonAttr = "python37Full"; ··· 13148 13142 python3Packages = python3.pkgs; 13149 13143 13150 13144 pythonInterpreters = callPackage ./../development/interpreters/python { }; 13151 - inherit (pythonInterpreters) python27 python36 python37 python38 python39 python310 python3Minimal pypy27 pypy37; 13145 + inherit (pythonInterpreters) python27 python37 python38 python39 python310 python3Minimal pypy27 pypy37; 13152 13146 13153 13147 # Python package sets. 13154 13148 python27Packages = python27.pkgs; 13155 - python36Packages = python36.pkgs; 13156 13149 python37Packages = python37.pkgs; 13157 13150 python38Packages = recurseIntoAttrs python38.pkgs; 13158 13151 python39Packages = recurseIntoAttrs python39.pkgs;