summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2016-11-11 20:06:22 +0100
committerRok Garbas <rok@garbas.si>2016-11-14 21:11:03 +0100
commit870fc844126d7fec49bfff4f82fcc852248ffd92 (patch)
tree801e54c490e7d7c49c880e42c4d0cc66cdd0c14d /pkgs
parent2c2b6ae45564d27b3297807cedde14bc3314401a (diff)
downloadnixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar.gz
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar.bz2
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar.lz
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar.xz
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.tar.zst
nixlib-870fc844126d7fec49bfff4f82fcc852248ffd92.zip
python: adding (python*Full) aliases for all versions of cpython
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/all-packages.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 3ffd389caa16..6cb32f3ce4df 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5556,7 +5556,13 @@ in
   # These are for compatibility and should not be used inside Nixpkgs.
   pythonFull = python.override{x11Support=true;};
   python2Full = python2.override{x11Support=true;};
+  python26Full = python26.override{includeModules=true;self=python26Full;};
+  python27Full = python27.override{x11Support=true;};
   python3Full = python3.override{x11Support=true;};
+  python33Full = python33.override{x11Support=true;};
+  python34Full = python34.override{x11Support=true;};
+  python35Full = python35.override{x11Support=true;};
+  python36Full = python36.override{x11Support=true;};
 
   # pythonPackages further below, but assigned here because they need to be in sync
   pythonPackages = python2Packages;