summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobert T. McGibbon <rmcgibbo@gmail.com>2020-12-29 15:46:48 -0500
committerRobert T. McGibbon <rmcgibbo@gmail.com>2020-12-29 23:33:32 -0500
commit7ae5cac752ee5ec685148fe27db4df305129408f (patch)
tree6107789bb5a0e21ef0aa52bbc596dbdd109f223f /pkgs
parent08bccaa1f768c57a3cf35fbd6c5660c4bf657954 (diff)
downloadnixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar.gz
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar.bz2
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar.lz
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar.xz
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.tar.zst
nixpkgs-7ae5cac752ee5ec685148fe27db4df305129408f.zip
python3Packages.fastparquet: 0.4.1 -> 0.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/fastparquet/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/fastparquet/default.nix b/pkgs/development/python-modules/fastparquet/default.nix
index 47c7d506309..07922ee19ef 100644
--- a/pkgs/development/python-modules/fastparquet/default.nix
+++ b/pkgs/development/python-modules/fastparquet/default.nix
@@ -3,22 +3,19 @@ thrift, pytest, python-snappy, lz4, zstd }:
 
 buildPythonPackage rec {
   pname = "fastparquet";
-  version = "0.4.1";
+  version = "0.5.0";
 
   src = fetchFromGitHub {
     owner = "dask";
     repo = pname;
     rev = version;
-    sha256 = "ViZRGEv227/RgCBYAQN8F3Z0m8WrNUT5KUdyFosjg9s=";
+    sha256 = "17i091kky34m2xivk29fqsyxxxa7v4352n79w01n7ni93za6wana";
   };
 
   postPatch = ''
     # 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 ];