python3Packages.fastparquet: 0.4.1 -> 0.5

This commit is contained in:
Robert T. McGibbon 2020-12-29 15:46:48 -05:00
parent 08bccaa1f7
commit 7ae5cac752

View file

@ -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 ];