Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "datafusion-cli";
|
|
version = "50.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
name = "datafusion-cli-source";
|
|
owner = "apache";
|
|
repo = "arrow-datafusion";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-SYvdz/rGs8bZHKuM5ws2c+pSdYx7mVfQ69dliCDp8ec=";
|
|
};
|
|
|
|
cargoHash = "sha256-WHmNbmP8rqP0W+5PvV9Qi5szdWIwLsZuNqDVnV6JL9o=";
|
|
|
|
buildAndTestSubdir = "datafusion-cli";
|
|
|
|
checkFlags = [
|
|
# Some tests not found fake path
|
|
"--skip=catalog::tests::query_gs_location_test"
|
|
"--skip=catalog::tests::query_http_location_test"
|
|
"--skip=catalog::tests::query_s3_location_test"
|
|
"--skip=exec::tests::copy_to_external_object_store_test"
|
|
"--skip=exec::tests::copy_to_object_store_table_s3"
|
|
"--skip=exec::tests::create_object_store_table_cos"
|
|
"--skip=exec::tests::create_object_store_table_http"
|
|
"--skip=exec::tests::create_object_store_table_oss"
|
|
"--skip=exec::tests::create_object_store_table_s3"
|
|
"--skip=tests::test_parquet_metadata_works_with_strings"
|
|
];
|
|
|
|
# timeout
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "CLI for Apache Arrow DataFusion";
|
|
mainProgram = "datafusion-cli";
|
|
homepage = "https://arrow.apache.org/datafusion";
|
|
changelog = "https://github.com/apache/arrow-datafusion/blob/${finalAttrs.version}/datafusion/CHANGELOG.md";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ happysalada ];
|
|
};
|
|
})
|