pygobject: in pythonPackages, removed hack handled now by pth

This commit is contained in:
Florian Friesdorf
2013-01-11 15:30:56 +01:00
parent 87423443b8
commit e856c72159
3 changed files with 6 additions and 13 deletions

View File

@@ -12,18 +12,6 @@ stdenv.mkDerivation rec {
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
'';
meta = {
homepage = http://live.gnome.org/PyGObject;
description = "Python bindings for Glib";