nixpkgs/pkgs/development/python-modules/pygobject/3.nix

18 lines
493 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo }:
2014-05-20 11:37:09 +00:00
stdenv.mkDerivation rec {
2014-05-20 11:37:09 +00:00
name = "pygobject-3.12.1";
src = fetchurl {
2014-05-20 11:37:09 +00:00
url = "mirror://gnome/sources/pygobject/3.12/${name}.tar.xz";
sha256 = "0dfsjsa95ix8bx3h8w4bhnz7rymgl2paclvbn93x6qp8b53y0pys";
};
buildInputs = [ python pkgconfig glib gobjectIntrospection pycairo cairo ];
meta = {
homepage = http://live.gnome.org/PyGObject;
description = "Python bindings for Glib";
};
}