include site for python wrappers to enable deps via pth files

svn path=/nixpkgs/branches/stdenv-updates/; revision=32582
This commit is contained in:
Florian Friesdorf
2012-02-26 17:23:05 +00:00
parent 8adcbec448
commit ccb34b093f
3 changed files with 8 additions and 7 deletions

View File

@@ -9,13 +9,13 @@ let pythonPackages = python.modules // rec {
buildPythonPackage = import ../development/python-modules/generic {
inherit (pkgs) lib;
inherit python wrapPython setuptools;
inherit python wrapPython setuptools site;
};
setuptools = import ../development/python-modules/setuptools {
inherit (pkgs) stdenv fetchurl;
inherit python wrapPython;
inherit python wrapPython site;
};