pygobject: in pythonPackages, removed hack handled now by pth
This commit is contained in:
parent
87423443b8
commit
e856c72159
@ -12,18 +12,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
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
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://live.gnome.org/PyGObject;
|
homepage = http://live.gnome.org/PyGObject;
|
||||||
description = "Python bindings for Glib";
|
description = "Python bindings for Glib";
|
||||||
|
@ -5309,7 +5309,7 @@ let
|
|||||||
|
|
||||||
pygame = callPackage ../development/python-modules/pygame { };
|
pygame = callPackage ../development/python-modules/pygame { };
|
||||||
|
|
||||||
pygobject = callPackage ../development/python-modules/pygobject { };
|
pygobject = pythonPackages.pygobject;
|
||||||
|
|
||||||
pygtk = callPackage ../development/python-modules/pygtk { };
|
pygtk = callPackage ../development/python-modules/pygtk { };
|
||||||
|
|
||||||
|
@ -62,6 +62,11 @@ let pythonPackages = python.modules // rec {
|
|||||||
inherit python buildPythonPackage;
|
inherit python buildPythonPackage;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pygobject = import ../development/python-modules/pygobject {
|
||||||
|
inherit (pkgs) stdenv fetchurl pkgconfig glib;
|
||||||
|
inherit python;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# packages defined here
|
# packages defined here
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user