libgsf: remove Python dependency

Python is only used for a single console test these dayls and it likely requires
non-trivial introspection hacks.
This commit is contained in:
Jan Tojnar 2019-12-14 22:18:58 +01:00
parent feb4e68173
commit 908db0502b
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2
, python, perl, gdk-pixbuf, libiconv, libintl, gnome3 }:
, perl, gdk-pixbuf, libiconv, libintl, gnome3 }:
stdenv.mkDerivation rec {
pname = "libgsf";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool libintl ];
buildInputs = [ gettext bzip2 zlib python ];
buildInputs = [ gettext bzip2 zlib ];
checkInputs = [ perl ];
propagatedBuildInputs = [ libxml2 glib gdk-pixbuf libiconv ];