3
0
Fork 0
forked from mirrors/nixpkgs

python: adding (python*Full) aliases for all versions of cpython

This commit is contained in:
Rok Garbas 2016-11-11 20:06:22 +01:00
parent 2c2b6ae455
commit 870fc84412

View file

@ -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;