forked from mirrors/nixpkgs
python3Packages.graphviz: disable tests on darwin
This commit is contained in:
parent
366a59cdc3
commit
1a1f78dc02
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
|
@ -58,6 +59,9 @@ buildPythonPackage rec {
|
|||
runHook postCheck
|
||||
'';
|
||||
|
||||
# Too many failures due to attempting to connect to com.apple.fonts daemon
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple Python interface for Graphviz";
|
||||
homepage = "https://github.com/xflr6/graphviz";
|
||||
|
|
Loading…
Reference in a new issue