summary refs log tree commit diff
path: root/pkgs/development/python-modules/pygobject/3.nix
blob: ffbe906a9007ac09cfbd5bde1d43976c7ac303f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }:
 
stdenv.mkDerivation rec {
  name = "pygobject-3.0.4";
   
  src = fetchurl {
    url = "mirror://gnome/sources/pygobject/3.0/${name}.tar.xz";
    sha256 = "f457b1d7f6b8bfa727593c3696d2b405da66b4a8d34cd7d3362ebda1221f0661";
  };

  configureFlags = "--disable-introspection";

  buildInputs = [ python pkgconfig glib gobjectIntrospection pycairo cairo ];

  meta = {
    homepage = http://live.gnome.org/PyGObject;
    description = "Python bindings for Glib";
  };
}