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

25 lines
759 B
Nix
Raw Normal View History

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