2013-05-09 21:11:30 +02:00
|
|
|
{ stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }:
|
2014-05-20 13:37:09 +02:00
|
|
|
|
2013-05-09 21:11:30 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-12-05 12:53:29 +01:00
|
|
|
name = "pygobject-3.18.2";
|
2014-01-05 19:50:03 +01:00
|
|
|
|
2013-05-09 21:11:30 +02:00
|
|
|
src = fetchurl {
|
2015-12-05 12:53:29 +01:00
|
|
|
url = "mirror://gnome/sources/pygobject/3.18/${name}.tar.xz";
|
|
|
|
sha256 = "0prc3ky7g50ixmfxbc7zf43fw6in4hw2q07667hp8swi2wassg1a";
|
2013-05-09 21:11:30 +02:00
|
|
|
};
|
|
|
|
|
2015-01-21 20:59:57 +01:00
|
|
|
buildInputs = [ python pkgconfig glib gobjectIntrospection ];
|
|
|
|
propagatedBuildInputs = [ pycairo cairo ];
|
2013-05-09 21:11:30 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://live.gnome.org/PyGObject;
|
|
|
|
description = "Python bindings for Glib";
|
|
|
|
};
|
|
|
|
}
|