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

@ -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";

@ -5309,7 +5309,7 @@ let
pygame = callPackage ../development/python-modules/pygame { };
pygobject = callPackage ../development/python-modules/pygobject { };
pygobject = pythonPackages.pygobject;
pygtk = callPackage ../development/python-modules/pygtk { };

@ -62,6 +62,11 @@ let pythonPackages = python.modules // rec {
inherit python buildPythonPackage;
};
pygobject = import ../development/python-modules/pygobject {
inherit (pkgs) stdenv fetchurl pkgconfig glib;
inherit python;
};
# packages defined here