about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastparquet
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-09-27 12:42:03 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-09-27 12:42:03 -0400
commit3821543de7ec3f9a19bdbd7ec0bfd98b9b3253f3 (patch)
tree7cb0ccfdc19e144646f5fb142593104f17d5cf9e /pkgs/development/python-modules/fastparquet
parent61563633d8aed627eecdcbb697a73937c7dc4eb2 (diff)
pythonPackages.fastparquet: disable broken test
Diffstat (limited to 'pkgs/development/python-modules/fastparquet')
-rw-r--r--pkgs/development/python-modules/fastparquet/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/fastparquet/default.nix b/pkgs/development/python-modules/fastparquet/default.nix
index 0a52d89df5ada..47c7d5063090e 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 ];