summary refs log tree commit diff
path: root/pkgs/development/python-modules/cffi
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-04-26 22:20:03 -0400
committerGitHub <noreply@github.com>2019-04-26 22:20:03 -0400
commit87944c3125c4e69a69e76003c0ed5bf47bf0c4d8 (patch)
tree6c6e4f084e2ed6567719d44b4dd377829cd2c6f8 /pkgs/development/python-modules/cffi
parent1cf626ce29f154c5742196327e03dbd61d0ed988 (diff)
parentc1f1a0ea159a4513be524fa775ad708debd19aa1 (diff)
downloadnixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.gz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.bz2
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.lz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.xz
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.tar.zst
nixpkgs-87944c3125c4e69a69e76003c0ed5bf47bf0c4d8.zip
Merge pull request #56744 from matthewbauer/macos-10-12
Update macOS to 10.12
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 0265288d3b8..cfabeb16b59 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"
   '';