Unverified Commit 06fc5385 authored by Jan Tojnar's avatar Jan Tojnar
Browse files

python2.pkgs.dbus-python: disable tests

PyGObject no longer supports Python 2.
parent 9c33a3ff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, fetchPypi, buildPythonPackage, python, pkgconfig, dbus, dbus-glib, isPyPy
, ncurses, pygobject3 }:
, ncurses, pygobject3, isPy3k }:

buildPythonPackage rec {
  pname = "dbus-python";
@@ -25,7 +25,7 @@ buildPythonPackage rec {
    # It seems not to retain the dependency anyway.
    ++ lib.optional (! python ? modules) ncurses;

  doCheck = true;
  doCheck = isPy3k;
  checkInputs = [ dbus.out pygobject3 ];

  meta = {