Reduce dependency footprint of gst-python.

The gst-python package actually is perfectly happy with pygobject and
does not require pygtk.
This commit is contained in:
Robert Helgesson 2014-10-28 21:50:35 +01:00
parent b102f09c00
commit beae0d93ff

View File

@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, python, gstreamer
, gst_plugins_base, pygtk
, gst_plugins_base, pygobject
}:
stdenv.mkDerivation rec {
@ -14,11 +14,11 @@ stdenv.mkDerivation rec {
};
buildInputs =
[ pkgconfig gst_plugins_base pygtk ]
[ pkgconfig gst_plugins_base pygobject ]
;
propagatedBuildInputs = [ gstreamer python ];
meta = {
homepage = http://gstreamer.freedesktop.org;