21f17d69f6
Build-tested on x86_64 Linux & Mac.
24 lines
644 B
Nix
24 lines
644 B
Nix
{ stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
major = "3.20";
|
|
minor = "0";
|
|
name = "pygobject-${major}.${minor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/pygobject/${major}/${name}.tar.xz";
|
|
sha256 = "0ikzh3l7g1gjh8jj8vg6mdvrb25svp63gxcam4m0i404yh0lgari";
|
|
};
|
|
|
|
buildInputs = [ python pkgconfig glib gobjectIntrospection ];
|
|
propagatedBuildInputs = [ pycairo cairo ];
|
|
|
|
passthru.pythonPath = [];
|
|
|
|
meta = {
|
|
homepage = http://live.gnome.org/PyGObject;
|
|
description = "Python bindings for Glib";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|