lol

pythonPackages.fastparquet: cleanup, add import check

+4 -2
+4 -2
pkgs/development/python-modules/fastparquet/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, numba, numpy, pandas, pytestrunner, 2 - thrift, pytest, python-snappy, lz4, zstd }: 2 + thrift, pytestCheckHook, python-snappy, lz4, zstd }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "fastparquet"; ··· 20 20 21 21 nativeBuildInputs = [ pytestrunner ]; 22 22 propagatedBuildInputs = [ numba numpy pandas thrift ]; 23 - checkInputs = [ pytest python-snappy lz4 zstd ]; 23 + checkInputs = [ pytestCheckHook python-snappy lz4 zstd ]; 24 + 25 + pythonImportsCheck = [ "fastparquet" ]; 24 26 25 27 meta = with lib; { 26 28 description = "A python implementation of the parquet format";