python3Packages.pygdbmi disable tests on macOS
This commit is contained in:
parent
83e6b6d906
commit
c3b0a4c8bc
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue