From cb40b4aafdd6593b9cddbd1b11c3d89ac2a7096f Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 18 Jul 2016 19:11:51 +0200 Subject: [PATCH] pythonPackages: dulwich disable tests on darwin --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b8eefafa4ad8..7bdf54917462 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9359,6 +9359,8 @@ in modules // { # Only test dependencies buildInputs = with self; [ pkgs.git gevent geventhttpclient pkgs.glibcLocales mock fastimport ]; + doCheck = !stdenv.isDarwin; + meta = { description = "Simple Python implementation of the Git file formats and protocols"; homepage = http://samba.org/~jelmer/dulwich/;