about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2018-11-26 03:20:08 +0100
committerGitHub <noreply@github.com>2018-11-26 03:20:08 +0100
commit4faa3c7ef2013337aae9428bd6289d4f5be87fc6 (patch)
tree81ba3bdf47ff2ba5a801f503277774989cfe602a
parent2a17b5b7d5f71570ece68bfaebf78ab74da8469c (diff)
parent5518f1ce58a914056fa7952f99d6b7b4c68bf24f (diff)
downloadnixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar.gz
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar.bz2
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar.lz
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar.xz
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.tar.zst
nixlib-4faa3c7ef2013337aae9428bd6289d4f5be87fc6.zip
Merge pull request #51054 from worldofpeace/pandas-aarch
pythonPackages.pandas: don't run tests on aarch64
-rw-r--r--pkgs/development/python-modules/pandas/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix
index 02427a524257..839e7f1e8192 100644
--- a/pkgs/development/python-modules/pandas/default.nix
+++ b/pkgs/development/python-modules/pandas/default.nix
@@ -87,6 +87,8 @@ in buildPythonPackage rec {
     "test_clipboard"
   ]);
 
+  doCheck = !stdenv.isAarch64; # upstream doesn't test this architecture
+
   checkPhase = ''
     runHook preCheck
   ''