summary refs log tree commit diff
path: root/pkgs/development/python-modules/fastparquet
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-02 18:34:09 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-02 18:34:43 +0200
commitce6fbb9c42e041149b76dbbe763d03ae69e15bbf (patch)
tree1ca4f2d3ff3f2113c5d19e420019937796d9ffb7 /pkgs/development/python-modules/fastparquet
parent7cae204ed9f499f4ecc242468361894a43b3507b (diff)
downloadnixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar.gz
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar.bz2
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar.lz
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar.xz
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.tar.zst
nixpkgs-ce6fbb9c42e041149b76dbbe763d03ae69e15bbf.zip
python3.pkgs.fastparquet: 0.3.3 -> 0.4.0
Diffstat (limited to 'pkgs/development/python-modules/fastparquet')
-rw-r--r--pkgs/development/python-modules/fastparquet/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/fastparquet/default.nix b/pkgs/development/python-modules/fastparquet/default.nix
index e8ad6e13644..46c6cfb06ca 100644
--- a/pkgs/development/python-modules/fastparquet/default.nix
+++ b/pkgs/development/python-modules/fastparquet/default.nix
@@ -1,15 +1,15 @@
 { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
-thrift, pytest, python-snappy, lz4 }:
+thrift, pytest, python-snappy, lz4, zstd }:
 
 buildPythonPackage rec {
   pname = "fastparquet";
-  version = "0.3.3";
+  version = "0.4.0";
 
   src = fetchFromGitHub {
     owner = "dask";
     repo = pname;
     rev = version;
-    sha256 = "1vnxr4r0bia2zi9csjw342l507nic6an4hr5xb3a36ggqlbaa0g5";
+    sha256 = "0y89gmcfylxqm8rs1fbirwjzmhcvlfx8fhvkm3ssbj1ivfd5mdlr";
   };
 
   postPatch = ''
@@ -20,7 +20,7 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ pytestrunner ];
   propagatedBuildInputs = [ numba numpy pandas thrift ];
-  checkInputs = [ pytest python-snappy lz4 ];
+  checkInputs = [ pytest python-snappy lz4 zstd ];
 
   meta = with lib; {
     description = "A python implementation of the parquet format";