2017-03-21 13:01:17 +01:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib }:
|
2007-05-13 22:12:13 +02:00
|
|
|
|
2017-03-21 13:01:17 +01:00
|
|
|
buildPythonPackage rec {
|
2017-11-09 12:26:09 +01:00
|
|
|
pname = "pygobject";
|
2016-09-04 09:39:17 +02:00
|
|
|
version = "2.28.6";
|
2017-03-21 21:58:57 +01:00
|
|
|
format = "other";
|
2017-11-09 12:26:09 +01:00
|
|
|
name = pname + "-" + version;
|
2016-09-04 09:39:17 +02:00
|
|
|
|
2007-05-13 22:12:13 +02:00
|
|
|
src = fetchurl {
|
2013-07-14 04:23:06 +02:00
|
|
|
url = "mirror://gnome/sources/pygobject/2.28/${name}.tar.xz";
|
2013-03-06 23:25:46 +01:00
|
|
|
sha256 = "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv";
|
2007-05-13 22:12:13 +02:00
|
|
|
};
|
|
|
|
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "out" "devdoc" ];
|
2015-07-26 13:43:49 +02:00
|
|
|
|
2016-04-16 05:23:57 +02:00
|
|
|
patches = [
|
|
|
|
# Fix warning spam
|
|
|
|
./pygobject-2.28.6-set_qdata.patch
|
|
|
|
./pygobject-2.28.6-gio-types-2.32.patch
|
|
|
|
];
|
|
|
|
|
2010-10-19 00:55:20 +02:00
|
|
|
configureFlags = "--disable-introspection";
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ glib ];
|
2016-05-14 03:04:41 +02:00
|
|
|
|
2013-01-11 16:11:07 +01:00
|
|
|
# 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}
|
2016-09-02 21:34:25 +02:00
|
|
|
|
|
|
|
# Prevent wrapping of codegen files as these are meant to be
|
|
|
|
# executed by the python program
|
|
|
|
chmod a-x $out/share/pygobject/*/codegen/*.py
|
2013-01-11 16:11:07 +01:00
|
|
|
'';
|
|
|
|
|
2010-10-19 00:55:20 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://live.gnome.org/PyGObject;
|
|
|
|
description = "Python bindings for Glib";
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-10-19 00:55:20 +02:00
|
|
|
};
|
2007-05-13 22:12:13 +02:00
|
|
|
}
|