16 inherit (python3Packages) python dbus-python;
18 stdenv.mkDerivation rec {
19 pname = "telepathy-qt";
23 url = "https://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-${version}.tar.gz";
24 sha256 = "bf8e2a09060addb80475a4938105b9b41d9e6837999b7a00e5351783857e18ad";
32 propagatedBuildInputs = [
37 buildInputs = [ dbus-glib ];
43 # No point in building tests if they are not run
44 # On 0.9.7, they do not even build with QT4
45 cmakeFlags = lib.optional (!doCheck) "-DENABLE_TESTS=OFF";
47 dontWrapQtApps = true;
49 doCheck = false; # giving up for now
52 description = "Telepathy Qt bindings";
53 homepage = "https://telepathy.freedesktop.org/components/telepathy-qt/";
54 license = licenses.lgpl21;
55 platforms = platforms.unix;