about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cffi
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-03-09 20:14:13 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2019-04-26 21:54:53 -0400
commitfffc777be40fa609305748321b851de1508df784 (patch)
tree3f4ab11ad529a643d1f25c4b890a971dcb9a6527 /pkgs/development/python-modules/cffi
parent4903e825fad1cd62b9391117723f60ccd8ad4859 (diff)
cffi: don’t run tests on darwin
they fail with llvm 7 for some reason
Diffstat (limited to 'pkgs/development/python-modules/cffi')
-rw-r--r--pkgs/development/python-modules/cffi/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cffi/default.nix b/pkgs/development/python-modules/cffi/default.nix
index 7eca740953f89..64162e7371bd7 100644
--- a/pkgs/development/python-modules/cffi/default.nix
+++ b/pkgs/development/python-modules/cffi/default.nix
@@ -31,7 +31,7 @@ if isPyPy then null else buildPythonPackage rec {
   # The tests use -Werror but with python3.6 clang detects some unreachable code.
   NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.cc.isClang [ "-Wno-unused-command-line-argument" "-Wno-unreachable-code" ];
 
-  doCheck = !stdenv.hostPlatform.isMusl; # TODO: Investigate
+  doCheck = !stdenv.hostPlatform.isMusl && !stdenv.isDarwin; # TODO: Investigate
   checkPhase = ''
     py.test -k "not test_char_pointer_conversion"
   '';