pythonPackages.fastparquet: cleanup, add import check

This commit is contained in:
Sandro Jäckel 2021-02-15 23:53:13 +01:00
parent f14aa7ae8c
commit 05fe50b79c
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
thrift, pytest, python-snappy, lz4, zstd }:
thrift, pytestCheckHook, python-snappy, lz4, zstd }:
buildPythonPackage rec {
pname = "fastparquet";
@ -20,7 +20,9 @@ buildPythonPackage rec {
nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [ numba numpy pandas thrift ];
checkInputs = [ pytest python-snappy lz4 zstd ];
checkInputs = [ pytestCheckHook python-snappy lz4 zstd ];
pythonImportsCheck = [ "fastparquet" ];
meta = with lib; {
description = "A python implementation of the parquet format";