summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-11-04 08:17:31 +0100
committerRobin Gloster <mail@glob.in>2018-11-04 18:48:24 +0100
commitb1bdce07931dc69e3e3ba7738fac707b66f0f4cf (patch)
tree616c8723ecffd3f673f3c2cc55db0ab2406b17b7 /pkgs/top-level/all-packages.nix
parent6a73df797c4e92288918edcf128ecbd9caa1fc9e (diff)
downloadnixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.gz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.bz2
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.lz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.xz
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.tar.zst
nixlib-b1bdce07931dc69e3e3ba7738fac707b66f0f4cf.zip
python34: remove
Python 3.4 will receive it's final patch release in March 2019 and there won't
be any releases anymore after that, so also not during NixOS 2019.03.

Python 3.4 is not used anymore in Nixpkgs. In any case, migrating code from
3.4 to 3.4+ is trivial.
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 46d32435114b..03aab60f40d2 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7788,7 +7788,6 @@ with pkgs;
   python2Full = python2.override{x11Support=true;};
   python27Full = python27.override{x11Support=true;};
   python3Full = python3.override{x11Support=true;};
-  python34Full = python34.override{x11Support=true;};
   python35Full = python35.override{x11Support=true;};
   python36Full = python36.override{x11Support=true;};
   python37Full = python37.override{x11Support=true;};
@@ -7802,10 +7801,6 @@ with pkgs;
     self = python27;
     inherit (darwin) CF configd;
   };
-  python34 = callPackage ../development/interpreters/python/cpython/3.4 {
-    inherit (darwin) CF configd;
-    self = python34;
-  };
   python35 = callPackage ../development/interpreters/python/cpython/3.5 {
     inherit (darwin) CF configd;
     self = python35;
@@ -7827,7 +7822,6 @@ with pkgs;
 
   # Python package sets.
   python27Packages = lib.hiPrioSet (recurseIntoAttrs python27.pkgs);
-  python34Packages = python34.pkgs;
   python35Packages = python35.pkgs;
   python36Packages = recurseIntoAttrs python36.pkgs;
   python37Packages = python37.pkgs;