lol
1{ fetchurl, stdenv, pkgconfig, python, gstreamer
2, gst_plugins_base, pygobject
3}:
4
5stdenv.mkDerivation rec {
6 name = "gst-python-0.10.22";
7
8 src = fetchurl {
9 urls = [
10 "${meta.homepage}/src/gst-python/${name}.tar.bz2"
11 "mirror://gentoo/distfiles/${name}.tar.bz2"
12 ];
13 sha256 = "0y1i4n5m1diljqr9dsq12anwazrhbs70jziich47gkdwllcza9lg";
14 };
15
16 # Need to disable the testFake test case due to bug in pygobject.
17 # See https://bugzilla.gnome.org/show_bug.cgi?id=692479
18 patches = [ ./disable-testFake.patch ];
19
20 buildInputs =
21 [ pkgconfig gst_plugins_base pygobject ]
22 ;
23
24 propagatedBuildInputs = [ gstreamer python ];
25
26 meta = {
27 homepage = http://gstreamer.freedesktop.org;
28
29 description = "Python bindings for GStreamer";
30
31 license = stdenv.lib.licenses.lgpl2Plus;
32 };
33}