Python-gst-1.0 dependency in Wheezy impossible to meet?

Hi all,

I’ve got almost every requirement satisfied to install on Debian Wheezy (on some archaic arm hardware hence limited in distro options) but there seems to be a missing package dependency in mopidy’s apt install procedure for wheezy: Depends: python-gst-1.0 but it is not installable.

As you can see from the package listings page, there is no backport of this to Wheezy: https://packages.debian.org/search?keywords=python-gst-1.0

Any advice? It feels like I’m so near but yet so far…

An update on what I’m trying:

Build requirements for source build of gobject-introspection can be met by apt.

This then lets you build pygobject.

Which will let you build Python-gst-1.0

So, I got to a successful build of python-gst-1.0 but am still getting the following:

raceback (most recent call last):
File “/usr/bin/mopidy”, line 9, in
load_entry_point(‘Mopidy==2.0.0’, ‘console_scripts’, ‘mopidy’)()
File “/usr/local/lib/python2.7/dist-packages/pkg_resources/init.py”, line 549, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File “/usr/local/lib/python2.7/dist-packages/pkg_resources/init.py”, line 2542, in load_entry_point
return ep.load()
File “/usr/local/lib/python2.7/dist-packages/pkg_resources/init.py”, line 2202, in load
return self.resolve()
File “/usr/local/lib/python2.7/dist-packages/pkg_resources/init.py”, line 2208, in resolve
module = import(self.module_name, fromlist=[‘name’], level=0)
File “/usr/local/lib/python2.7/dist-packages/mopidy/main.py”, line 8, in
from mopidy.internal.gi import Gst # noqa: Import to initialize
File “/usr/local/lib/python2.7/dist-packages/mopidy/internal/gi.py”, line 9, in
gi.require_version(‘Gst’, ‘1.0’)
File “/usr/lib/python2.7/dist-packages/gi/init.py”, line 48, in require_version
raise ValueError(‘Namespace %s not available’ % namespace)
ValueError: Namespace Gst not available

Any ideas?