Revert "include site for python wrappers to enable deps via pth files"

This reverts commit dca280ab0b668553c50506ab7b31284e8477a803.

svn path=/nixpkgs/branches/stdenv-updates/; revision=32660
This commit is contained in:
Florian Friesdorf
2012-02-28 00:07:48 +00:00
parent 43e16d04b9
commit 3b39dff906
3 changed files with 7 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
(http://pypi.python.org/pypi/setuptools/), which represents a large
number of Python packages nowadays. */
{ python, setuptools, wrapPython, lib, site }:
{ python, setuptools, wrapPython, lib }:
{ name, namePrefix ? "python-"
@@ -69,8 +69,7 @@ python.stdenv.mkDerivation (attrs // {
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
# XXX: I think setuptools is not needed here
pythonPath = [ setuptools site ] ++ pythonPath;
pythonPath = [ setuptools] ++ pythonPath;
# XXX: Should we run `easy_install --always-unzip'? It doesn't seem
# to have a noticeable impact on small scripts.