python3Packages.pygdbmi disable tests on macOS

This commit is contained in:
misuzu 2020-06-13 18:26:07 +03:00
parent 83e6b6d906
commit c3b0a4c8bc

View File

@ -1,4 +1,5 @@
{ lib { stdenv
, lib
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, gdb , gdb
@ -19,6 +20,9 @@ buildPythonPackage rec {
checkInputs = [ gdb ]; checkInputs = [ gdb ];
# tests require gcc for some reason
doCheck = !stdenv.hostPlatform.isDarwin;
postPatch = '' postPatch = ''
# tries to execute flake8, # tries to execute flake8,
# which is likely to break on flake8 updates # which is likely to break on flake8 updates