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
, fetchFromGitHub
, gdb
@ -19,6 +20,9 @@ buildPythonPackage rec {
checkInputs = [ gdb ];
# tests require gcc for some reason
doCheck = !stdenv.hostPlatform.isDarwin;
postPatch = ''
# tries to execute flake8,
# which is likely to break on flake8 updates