From ff741a5d52550f0bfcb07584c35349f8f9208e0c Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sun, 2 Feb 2020 14:24:44 -0800 Subject: [PATCH] python3Packages.pandas: disable invalid tests util_in_top_level tries to import from pandas.tests. This would be fine if running the tests pre-installation, however, the tests directory isn't available after installation --- pkgs/development/python-modules/pandas/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index c9db6b1169a..fcced524306 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -87,6 +87,8 @@ in buildPythonPackage rec { # ordering logic has changed "numpy_ufuncs_other" "order_without_freq" + # tries to import from pandas.tests post install + "util_in_top_level" ] ++ optionals isDarwin [ "test_locale" "test_clipboard"