closes #463 pythonPackages now uses self variable instead of rec builtin
This commit is contained in:
parent
f78f2a90d6
commit
e17781f8b1
@ -7026,34 +7026,34 @@ let
|
|||||||
# Therefore we do not recurse into attributes here, in contrast to
|
# Therefore we do not recurse into attributes here, in contrast to
|
||||||
# python27Packages. `nix-env -iA python26Packages.nose` works
|
# python27Packages. `nix-env -iA python26Packages.nose` works
|
||||||
# regardless.
|
# regardless.
|
||||||
python26Packages = import ./python-packages.nix {
|
python26Packages = callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = python26;
|
python = python26;
|
||||||
|
self = python26Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
python27Packages = lib.hiPrioSet (recurseIntoAttrs (import ./python-packages.nix {
|
python27Packages = lib.hiPrioSet (recurseIntoAttrs (callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = python27;
|
python = python27;
|
||||||
|
self = python27Packages;
|
||||||
}));
|
}));
|
||||||
|
|
||||||
python32Packages = import ./python-packages.nix {
|
python32Packages = callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = python32;
|
python = python32;
|
||||||
|
self = python32Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
python33Packages = recurseIntoAttrs (import ./python-packages.nix {
|
python33Packages = recurseIntoAttrs (callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = python33;
|
python = python33;
|
||||||
|
self = python33Packages;
|
||||||
});
|
});
|
||||||
|
|
||||||
python34Packages = recurseIntoAttrs (import ./python-packages.nix {
|
python34Packages = recurseIntoAttrs (callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = python34;
|
python = python34;
|
||||||
|
self = python34Packages;
|
||||||
});
|
});
|
||||||
|
|
||||||
pypyPackages = recurseIntoAttrs (import ./python-packages.nix {
|
pypyPackages = recurseIntoAttrs (callPackage ./python-packages.nix {
|
||||||
inherit pkgs;
|
|
||||||
python = pypy;
|
python = pypy;
|
||||||
|
self = pypyPackages;
|
||||||
});
|
});
|
||||||
|
|
||||||
foursuite = callPackage ../development/python-modules/4suite { };
|
foursuite = callPackage ../development/python-modules/4suite { };
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user