python2Packages: separate extension
This commit is contained in:
parent
3955326221
commit
4f02e12f8a
@ -69,12 +69,15 @@ with pkgs;
|
||||
recursivePthLoader
|
||||
;
|
||||
};
|
||||
optionalExtensions = cond: as: if cond then as else [];
|
||||
python2Extension = import ../../../top-level/python2-packages.nix;
|
||||
extensions = lib.composeManyExtensions ((optionalExtensions (!self.isPy3k) [python2Extension]) ++ [ overrides ]);
|
||||
in lib.makeScopeWithSplicing
|
||||
pkgs.splicePackages
|
||||
pkgs.newScope
|
||||
otherSplices
|
||||
keep
|
||||
(lib.extends overrides pythonPackagesFun))
|
||||
(lib.extends extensions pythonPackagesFun))
|
||||
{
|
||||
overrides = packageOverrides;
|
||||
};
|
||||
|
7
pkgs/top-level/python2-packages.nix
Normal file
7
pkgs/top-level/python2-packages.nix
Normal file
@ -0,0 +1,7 @@
|
||||
# Extension with Python 2 packages that is overlayed on top
|
||||
# of the Python 3 packages set. This way, Python 2+3 compatible
|
||||
# packages can still be used.
|
||||
|
||||
self: super: {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user