Defaukt for python-full is everything-on

svn path=/nixpkgs/trunk/; revision=13104
This commit is contained in:
Michael Raskin 2008-10-22 22:08:56 +00:00
parent d5ee2e2dba
commit 06d01c6d00

View File

@ -2021,10 +2021,10 @@ let
};
python25Full = python25Base.meta.function {
db4 = if getConfig ["python" "db4Support"] false then db4 else null;
sqlite = if getConfig ["python" "sqliteSupport"] false then sqlite else null;
readline = if getConfig ["python" "readlineSupport"] false then readline else null;
openssl = if getConfig ["python" "opensslSupport"] false then openssl else null;
db4 = if getConfig ["python" "db4Support"] true then db4 else null;
sqlite = if getConfig ["python" "sqliteSupport"] true then sqlite else null;
readline = if getConfig ["python" "readlineSupport"] true then readline else null;
openssl = if getConfig ["python" "opensslSupport"] true then openssl else null;
};
pyrex = pyrex095;