pythonPackages.fastparquet: cleanup, add import check
This commit is contained in:
parent
f14aa7ae8c
commit
05fe50b79c
@ -1,5 +1,5 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
|
{ lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner,
|
||||||
thrift, pytest, python-snappy, lz4, zstd }:
|
thrift, pytestCheckHook, python-snappy, lz4, zstd }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "fastparquet";
|
pname = "fastparquet";
|
||||||
@ -20,7 +20,9 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pytestrunner ];
|
nativeBuildInputs = [ pytestrunner ];
|
||||||
propagatedBuildInputs = [ numba numpy pandas thrift ];
|
propagatedBuildInputs = [ numba numpy pandas thrift ];
|
||||||
checkInputs = [ pytest python-snappy lz4 zstd ];
|
checkInputs = [ pytestCheckHook python-snappy lz4 zstd ];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "fastparquet" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A python implementation of the parquet format";
|
description = "A python implementation of the parquet format";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user