summary refs log tree commit diff
path: root/pkgs/development/python-modules/cffi
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2021-10-11 21:52:04 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-11-24 15:17:13 -0800
commit54b5495e4e632aa5797b04509acc93baf8800580 (patch)
tree32d1736f83092ebc13b5d3619b90cfdc8b2a7155 /pkgs/development/python-modules/cffi
parentc14efb058628b97d02895ab58b89421093d858c3 (diff)
downloadnixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar.gz
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar.bz2
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar.lz
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar.xz
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.tar.zst
nixpkgs-54b5495e4e632aa5797b04509acc93baf8800580.zip
cffi: Reenable checks to reveal Darwin problem
This problem can now be considered investigated.
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 dd0cdd0615d..e5e5e90b043 100644
--- a/pkgs/development/python-modules/cffi/default.nix
+++ b/pkgs/development/python-modules/cffi/default.nix
@@ -22,7 +22,7 @@ if isPyPy then null else buildPythonPackage rec {
   NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang
     "-Wno-unused-command-line-argument -Wno-unreachable-code";
 
-  doCheck = !stdenv.hostPlatform.isMusl && !stdenv.isDarwin; # TODO: Investigate
+  doCheck = !stdenv.hostPlatform.isMusl;
 
   checkInputs = [ pytestCheckHook ];