summary refs log tree commit diff
path: root/pkgs/development/python-modules/pygobject/3.nix
blob: 903db3e252cc4e315a24351f9ccb7de20294d406 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }:
 
stdenv.mkDerivation rec {
  name = "pygobject-3.10.2";

  src = fetchurl {
    url = "mirror://gnome/sources/pygobject/3.10/${name}.tar.xz";
    sha256 = "75608f2c4052f0277508fc79debef026d9e84cb9261de2b922387c093d32c326";
  };

  buildInputs = [ python pkgconfig glib gobjectIntrospection pycairo cairo ];

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