pkgs/development/python-modules/pygobject: ensure that python code can be found

svn path=/nixpkgs/trunk/; revision=23616
This commit is contained in:
Peter Simons 2010-09-03 13:18:38 +00:00
parent 3cfc942bdc
commit 4be79671b4

View File

@ -8,4 +8,16 @@ stdenv.mkDerivation {
}; };
buildInputs = [python pkgconfig glib]; buildInputs = [python pkgconfig glib];
postInstall = ''
# All python code is installed into a "gtk-2.0" sub-directory. That
# sub-directory may be useful on systems which share several library
# versions in the same prefix, i.e. /usr/local, but on Nix that directory
# is useless. Furthermore, its existence makes it very hard to guess a
# proper $PYTHONPATH that allows "import gtk" to succeed.
cd $(toPythonPath $out)/gtk-2.0
for n in *; do
ln -s "gtk-2.0/$n" "../$n"
done
'';
} }