1 { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner
2 , thrift, pytestCheckHook, python-snappy, lz4, zstandard, zstd }:
4 buildPythonPackage rec {
8 src = fetchFromGitHub {
12 sha256 = "17i091kky34m2xivk29fqsyxxxa7v4352n79w01n7ni93za6wana";
15 nativeBuildInputs = [ pytestrunner ];
16 propagatedBuildInputs = [ numba numpy pandas thrift ];
17 checkInputs = [ pytestCheckHook python-snappy lz4 zstandard zstd ];
19 # E ModuleNotFoundError: No module named 'fastparquet.speedups'
21 pythonImportsCheck = [ "fastparquet" ];
24 description = "A python implementation of the parquet format";
25 homepage = "https://github.com/dask/fastparquet";
26 license = with licenses; [ asl20 ];
27 maintainers = with maintainers; [ veprbl ];