python3Packages.graphviz: disable tests on darwin

This commit is contained in:
Ben Siraphob 2022-04-04 18:08:50 -05:00
parent 366a59cdc3
commit 1a1f78dc02
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildPythonPackage , buildPythonPackage
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
@ -58,6 +59,9 @@ buildPythonPackage rec {
runHook postCheck runHook postCheck
''; '';
# Too many failures due to attempting to connect to com.apple.fonts daemon
doCheck = !stdenv.isDarwin;
meta = with lib; { meta = with lib; {
description = "Simple Python interface for Graphviz"; description = "Simple Python interface for Graphviz";
homepage = "https://github.com/xflr6/graphviz"; homepage = "https://github.com/xflr6/graphviz";