fastparquet: enable tests

This commit is contained in:
Dmitry Kalinkin 2019-12-02 17:44:43 -05:00
parent 9f0933cf73
commit 437a1dd050
No known key found for this signature in database
GPG Key ID: 5157B3EC8B2CA333

View File

@ -1,13 +1,15 @@
{ lib, buildPythonPackage, fetchPypi, numba, numpy, pandas, pytestrunner, { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
thrift, pytest, python-snappy, lz4 }: thrift, pytest, python-snappy, lz4 }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fastparquet"; pname = "fastparquet";
version = "0.3.2"; version = "0.3.2";
src = fetchPypi { src = fetchFromGitHub {
inherit pname version; owner = "dask";
sha256 = "d81dcec444f4c4829234b9baac57c7125b8fbe9119c2eca2dee922650db49205"; repo = pname;
rev = version;
sha256 = "142kmyddaq6mvmca23abwns1csn8f3lk9c8mbxwxrg4wa1dh0lb4";
}; };
postPatch = '' postPatch = ''
@ -20,9 +22,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [ numba numpy pandas thrift ]; propagatedBuildInputs = [ numba numpy pandas thrift ];
checkInputs = [ pytest python-snappy lz4 ]; checkInputs = [ pytest python-snappy lz4 ];
# test_data/ missing in PyPI tarball
doCheck = false;
meta = with lib; { meta = with lib; {
description = "A python implementation of the parquet format"; description = "A python implementation of the parquet format";
homepage = https://github.com/dask/fastparquet; homepage = https://github.com/dask/fastparquet;