0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python3Packages.pyarrow: add imports check

This commit is contained in:
Phillip Cloud 2022-02-17 07:12:13 -05:00
parent 430037f849
commit 64dc56cf36
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -68,6 +68,17 @@ buildPythonPackage rec {
mv tests pyarrow/tests
'';
pythonImportsCheck = map (module: "pyarrow.${module}") [
"compute"
"csv"
"dataset"
"flight"
"fs"
"hdfs"
"json"
"parquet"
];
meta = with lib; {
description = "A cross-language development platform for in-memory data";
homepage = "https://arrow.apache.org/";