From a559cc270eccd51ddc6dd83953094ddaed6a9a9d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 26 Mar 2012 14:07:34 +0000 Subject: [PATCH] * Let nix-env only search Python 2.7 packages. Reported by Konrad Hinsen. We should add a check to enforce that every package/version pair in "nix-env -qa" is unique :-) svn path=/nixpkgs/trunk/; revision=33424 --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1cf32638a83..06f02ae601a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4950,10 +4950,10 @@ let pythonPackages = python27Packages; - python26Packages = recurseIntoAttrs (import ./python-packages.nix { + python26Packages = import ./python-packages.nix { inherit pkgs; python = python26; - }); + }; python27Packages = recurseIntoAttrs (import ./python-packages.nix { inherit pkgs;