python3.pkgs.fastparquet: 0.3.3 -> 0.4.0

This commit is contained in:
Frederik Rietdijk 2020-06-02 18:34:09 +02:00
parent 7cae204ed9
commit ce6fbb9c42

View File

@ -1,15 +1,15 @@
{ lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner, { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
thrift, pytest, python-snappy, lz4 }: thrift, pytest, python-snappy, lz4, zstd }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fastparquet"; pname = "fastparquet";
version = "0.3.3"; version = "0.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dask"; owner = "dask";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1vnxr4r0bia2zi9csjw342l507nic6an4hr5xb3a36ggqlbaa0g5"; sha256 = "0y89gmcfylxqm8rs1fbirwjzmhcvlfx8fhvkm3ssbj1ivfd5mdlr";
}; };
postPatch = '' postPatch = ''
@ -20,7 +20,7 @@ buildPythonPackage rec {
nativeBuildInputs = [ pytestrunner ]; nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [ numba numpy pandas thrift ]; propagatedBuildInputs = [ numba numpy pandas thrift ];
checkInputs = [ pytest python-snappy lz4 ]; checkInputs = [ pytest python-snappy lz4 zstd ];
meta = with lib; { meta = with lib; {
description = "A python implementation of the parquet format"; description = "A python implementation of the parquet format";