about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Friesdorf <flo@chaoflow.net>2011-10-14 09:47:30 +0000
committerFlorian Friesdorf <flo@chaoflow.net>2011-10-14 09:47:30 +0000
commitd6e22c9b4a7151435986a484d780c339a10cb999 (patch)
tree44a7180880d685b93f067b764f21456628eb9a19
parent7a2cb5bc64fb5d415cddc4d58d676700db776fee (diff)
python26Full and explicit python27Full
svn path=/nixpkgs/trunk/; revision=29833
-rw-r--r--pkgs/top-level/all-packages.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1551ff9aba1fe..63579d4519e24 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2586,8 +2586,16 @@ let
     sw_vers = if stdenv.isDarwin then pkgs.darwinSwVersUtility else null;
   };
 
-  pythonFull = callPackage ../development/interpreters/python/wrapper.nix {
-    extraLibs = lib.attrValues python.modules;
+  pythonFull = python27Full;
+
+  python26Full = callPackage ../development/interpreters/python/wrapper.nix {
+    extraLibs = lib.attrValues python26.modules;
+    python = python26;
+  };
+
+  python27Full = callPackage ../development/interpreters/python/wrapper.nix {
+    extraLibs = lib.attrValues python27.modules;
+    python = python27;
   };
 
   pythonhomeWrapper = callPackage ../development/interpreters/python/pythonhome-wrapper.nix { };