2021-01-04 03:59:48 +01:00
|
|
|
{ stdenv, fetchurl, python, buildPythonPackage, pkgconfig, glib, isPy3k, pythonAtLeast }:
|
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";
|
2019-12-13 23:55:40 +01:00
|
|
|
version = "2.28.7";
|
2017-03-21 21:58:57 +01:00
|
|
|
format = "other";
|
2021-01-04 03:59:48 +01:00
|
|
|
disabled = pythonAtLeast "3.9";
|
2016-09-04 09:39:17 +02:00
|
|
|
|
2007-05-13 22:12:13 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://gnome/sources/pygobject/2.28/${pname}-${version}.tar.xz";
|
2019-12-13 23:55:40 +01:00
|
|
|
sha256 = "0nkam61rsn7y3wik3vw46wk5q2cjfh2iph57hl9m39rc8jijb7dv";
|
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
|
|
|
|
2019-12-13 23:55:40 +01:00
|
|
|
patches = stdenv.lib.optionals stdenv.isDarwin [
|
2019-01-27 14:55:58 +01:00
|
|
|
./pygobject-2.0-fix-darwin.patch
|
2016-04-16 05:23:57 +02:00
|
|
|
];
|
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--disable-introspection" ];
|
2010-10-19 00:55:20 +02:00
|
|
|
|
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.
|
2019-12-20 22:52:19 +01:00
|
|
|
postInstall = stdenv.lib.optionalString (!isPy3k) ''
|
2019-08-15 14:41:18 +02:00
|
|
|
mv $out/lib/${python.libPrefix}/site-packages/{pygtk.pth,${pname}-${version}.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 = {
|
2019-12-13 23:55:40 +01:00
|
|
|
homepage = "https://pygobject.readthedocs.io/";
|
|
|
|
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
|
|
|
}
|