{ stdenv, fetchurl, python, pkgconfig, glib }: stdenv.mkDerivation rec { name = "pygobject-2.28.6"; src = fetchurl { url = "http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/${name}.tar.xz"; sha256 = "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv"; }; configureFlags = "--disable-introspection"; buildInputs = [ python pkgconfig glib ]; meta = { homepage = http://live.gnome.org/PyGObject; description = "Python bindings for Glib"; }; }