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 { fetchurl, stdenv, pkgconfig, python, gstreamer
, gst_plugins_base, pygtk , gst_plugins_base, pygobject
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = buildInputs =
[ pkgconfig gst_plugins_base pygtk ] [ pkgconfig gst_plugins_base pygobject ]
; ;
propagatedBuildInputs = [ gstreamer python ]; propagatedBuildInputs = [ gstreamer python ];