pygobject, revert accidental change
I suspect we don't need the postInstall step which moves pygtk.pth to pygobject.pth any more, but I didn't mean to include it in this change set
This commit is contained in:
parent
0037e518b0
commit
579082350c
@ -12,6 +12,14 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ python pkgconfig glib ];
|
buildInputs = [ python pkgconfig glib ];
|
||||||
|
|
||||||
|
# in a "normal" setup, pygobject and pygtk are installed into the
|
||||||
|
# same site-packages: we need a pth file for both. pygtk.py would be
|
||||||
|
# used to select a specific version, in our setup it should have no
|
||||||
|
# effect, but we leave it in case somebody expects and calls it.
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/lib/${python.libPrefix}/site-packages/{pygtk.pth,${name}.pth}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://live.gnome.org/PyGObject;
|
homepage = http://live.gnome.org/PyGObject;
|
||||||
description = "Python bindings for Glib";
|
description = "Python bindings for Glib";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user