pythonPackages.fastparquet: 0.2.1 -> 0.3.2

This commit is contained in:
Dmitry Kalinkin 2019-12-02 16:19:45 -05:00
parent 5a3dcb531e
commit 9f0933cf73
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -1,20 +1,13 @@
{ lib, buildPythonPackage, fetchPypi, fetchpatch, numba, numpy, pandas, { lib, buildPythonPackage, fetchPypi, numba, numpy, pandas, pytestrunner,
pytestrunner, thrift, pytest, python-snappy, lz4 }: thrift, pytest, python-snappy, lz4 }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fastparquet"; pname = "fastparquet";
version = "0.2.1"; version = "0.3.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "183wdmhnhnlsd7908n3d2g4qnb49fcipqfshghwpbdwdzjpa0day"; sha256 = "d81dcec444f4c4829234b9baac57c7125b8fbe9119c2eca2dee922650db49205";
};
# Fixes for recent pandas version
# See https://github.com/dask/fastparquet/pull/396
patches = fetchpatch {
url = https://github.com/dask/fastparquet/commit/31fb3115598d1ab62a5c8bf7923a27c16f861529.patch;
sha256 = "0r1ig4rydmy4j85dgb52qbsx6knxdwn4dn9h032fg3p6xqq0zlpm";
}; };
postPatch = '' postPatch = ''