about summary refs log tree commit diff
path: root/pkgs/development/python-modules/Cython
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-08-16 21:10:19 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-08-16 22:44:07 -0500
commitbca81442744ddf18b5721a397a29ea1146d74fd2 (patch)
treec0d901a4adbc22089571f0e76e06fa8faadd4af8 /pkgs/development/python-modules/Cython
parent7a39b0c43b6e8d913db2882b52e1f81b1eb96bd4 (diff)
treewide: disable some tests broken on darwin
disable checks for:

- cython
- ldap
- tqdm
Diffstat (limited to 'pkgs/development/python-modules/Cython')
-rw-r--r--pkgs/development/python-modules/Cython/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/Cython/default.nix b/pkgs/development/python-modules/Cython/default.nix
index fa07eee0d7e14..de5eaea842b2b 100644
--- a/pkgs/development/python-modules/Cython/default.nix
+++ b/pkgs/development/python-modules/Cython/default.nix
@@ -48,6 +48,8 @@ in buildPythonPackage rec {
         ''--exclude="(${builtins.concatStringsSep "|" excludedTests})"''}
   '';
 
+  doCheck = !stdenv.isDarwin;
+
   patches = [
     # The following is in GitHub in 0.28.3 but not in the `sdist`.
     # https://github.com/cython/cython/issues/2319