From 3821543de7ec3f9a19bdbd7ec0bfd98b9b3253f3 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sun, 27 Sep 2020 12:42:03 -0400 Subject: [PATCH] pythonPackages.fastparquet: disable broken test --- pkgs/development/python-modules/fastparquet/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/fastparquet/default.nix b/pkgs/development/python-modules/fastparquet/default.nix index 0a52d89df5a..47c7d506309 100644 --- a/pkgs/development/python-modules/fastparquet/default.nix +++ b/pkgs/development/python-modules/fastparquet/default.nix @@ -16,6 +16,9 @@ buildPythonPackage rec { # FIXME: package zstandard # removing the test dependency for now substituteInPlace setup.py --replace "'zstandard'," "" + + # workaround for https://github.com/dask/fastparquet/issues/517 + rm fastparquet/test/test_partition_filters_specialstrings.py ''; nativeBuildInputs = [ pytestrunner ];