2017-03-21 12:01:17 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, python, pkgconfig, glib, gobjectIntrospection, pycairo, cairo, which, ncurses}:
|
2014-05-20 11:37:09 +00:00
|
|
|
|
2017-03-21 12:01:17 +00:00
|
|
|
buildPythonPackage rec {
|
2016-09-29 12:17:46 +00:00
|
|
|
major = "3.22";
|
2016-04-03 05:28:15 +00:00
|
|
|
minor = "0";
|
|
|
|
name = "pygobject-${major}.${minor}";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2014-01-05 18:50:03 +00:00
|
|
|
|
2013-05-09 19:11:30 +00:00
|
|
|
src = fetchurl {
|
2016-04-03 05:28:15 +00:00
|
|
|
url = "mirror://gnome/sources/pygobject/${major}/${name}.tar.xz";
|
2016-09-29 12:17:46 +00:00
|
|
|
sha256 = "08b29cfb08efc80f7a8630a2734dec65a99c1b59f1e5771c671d2e4ed8a5cbe7";
|
2013-05-09 19:11:30 +00:00
|
|
|
};
|
|
|
|
|
2016-11-13 22:18:43 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2016-08-26 21:18:32 +00:00
|
|
|
buildInputs = [ pkgconfig glib gobjectIntrospection ]
|
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ which ncurses ];
|
2015-01-21 19:59:57 +00:00
|
|
|
propagatedBuildInputs = [ pycairo cairo ];
|
2013-05-09 19:11:30 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://live.gnome.org/PyGObject;
|
|
|
|
description = "Python bindings for Glib";
|
2016-08-26 21:18:32 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-05-09 19:11:30 +00:00
|
|
|
};
|
|
|
|
}
|