nixpkgs/pkgs/development/libraries/arrow-cpp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

263 lines
7.6 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, fetchurl
, fetchFromGitHub
, fixDarwinDylibNames
, autoconf
2021-11-04 13:05:51 +00:00
, aws-sdk-cpp
, boost
, brotli
, c-ares
, cmake
, crc32c
, curl
, flatbuffers
, gflags
, glog
, google-cloud-cpp
, grpc
, gtest
2022-05-06 22:48:22 +00:00
, libbacktrace
, lz4
2021-11-04 13:05:51 +00:00
, minio
2022-02-04 20:18:59 +00:00
, ninja
, nlohmann_json
, openssl
, perl
, protobuf
, python3
, rapidjson
, re2
, snappy
2022-02-04 20:18:59 +00:00
, sqlite
, thrift
, tzdata
, utf8proc
, which
, zlib
, zstd
, enableShared ? !stdenv.hostPlatform.isStatic
, enableFlight ? true
, enableJemalloc ? !stdenv.isDarwin
# boost/process is broken in 1.69 on darwin, but fixed in 1.70 and
# non-existent in older versions
# see https://github.com/boostorg/process/issues/55
, enableS3 ? (!stdenv.isDarwin) || (lib.versionOlder boost.version "1.69" || lib.versionAtLeast boost.version "1.70")
, enableGcs ? !stdenv.isDarwin # google-cloud-cpp is not supported on darwin
}:
assert lib.asserts.assertMsg
((enableS3 && stdenv.isDarwin) -> (lib.versionOlder boost.version "1.69" || lib.versionAtLeast boost.version "1.70"))
"S3 on Darwin requires Boost != 1.69";
let
2020-08-19 20:13:48 +00:00
arrow-testing = fetchFromGitHub {
owner = "apache";
repo = "arrow-testing";
2022-08-04 10:55:44 +00:00
rev = "5bab2f264a23f5af68f69ea93d24ef1e8e77fc88";
hash = "sha256-Pxx8ohUpXb5u1995IvXmxQMqWiDJ+7LAll/AjQP7ph8=";
2020-08-19 20:13:48 +00:00
};
parquet-testing = fetchFromGitHub {
owner = "apache";
repo = "parquet-testing";
2022-08-04 10:55:44 +00:00
rev = "aafd3fc9df431c2625a514fb46626e5614f1d199";
hash = "sha256-cO5t/mgsbBhbSefx8EMGTyxmgTjhZ8mFujkFQ3p/JS0=";
};
2018-03-16 20:19:24 +00:00
in
stdenv.mkDerivation rec {
pname = "arrow-cpp";
2022-08-04 10:55:44 +00:00
version = "9.0.0";
2018-03-16 20:19:24 +00:00
src = fetchurl {
2022-05-06 22:48:22 +00:00
url = "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
2022-08-04 10:55:44 +00:00
hash = "sha256-qaAz8KNJAomZj0WGgNGVec8HkRcXumWv3my4AHD3qbU=";
2018-03-16 20:19:24 +00:00
};
sourceRoot = "apache-arrow-${version}/cpp";
2022-05-06 22:48:22 +00:00
# versions are all taken from
# https://github.com/apache/arrow/blob/apache-arrow-${version}/cpp/thirdparty/versions.txt
2022-05-06 22:48:22 +00:00
# jemalloc: arrow uses a custom prefix to prevent default allocator symbol
# collisions as well as custom build flags
${if enableJemalloc then "ARROW_JEMALLOC_URL" else null} = fetchurl {
2022-08-04 10:55:44 +00:00
url = "https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2";
hash = "sha256-LbgtHnEZ3z5xt2QCGbbf6EeJvAU3mDw7esT3GJrs/qo=";
};
# mimalloc: arrow uses custom build flags for mimalloc
2021-10-31 22:59:57 +00:00
ARROW_MIMALLOC_URL = fetchFromGitHub {
owner = "microsoft";
repo = "mimalloc";
2022-08-04 10:55:44 +00:00
rev = "v2.0.6";
hash = "sha256-u2ITXABBN/dwU+mCIbL3tN1f4c17aBuSdNTV+Adtohc=";
};
2021-10-31 22:59:57 +00:00
ARROW_XSIMD_URL = fetchFromGitHub {
owner = "xtensor-stack";
repo = "xsimd";
2022-08-04 10:55:44 +00:00
rev = "8.1.0";
hash = "sha256-Aqs6XJkGjAjGAp0PprabSM4m+32M/UXpSHppCHdzaZk=";
2022-05-06 22:48:22 +00:00
};
ARROW_SUBSTRAIT_URL = fetchFromGitHub {
owner = "substrait-io";
repo = "substrait";
2022-08-04 10:55:44 +00:00
rev = "v0.6.0";
hash = "sha256-hxCBomL4Qg9cHLRg9ZiO9k+JVOZXn6f4ikPtK+V9tno=";
2020-08-19 20:13:48 +00:00
};
patches = [
# patch to fix python-test
./darwin.patch
2019-10-07 06:48:25 +00:00
];
2019-10-07 06:48:25 +00:00
nativeBuildInputs = [
cmake
2022-02-04 20:18:59 +00:00
ninja
2019-10-07 06:48:25 +00:00
autoconf # for vendored jemalloc
flatbuffers
2019-07-20 19:24:12 +00:00
] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
buildInputs = [
2019-10-07 06:48:25 +00:00
boost
brotli
flatbuffers
gflags
glog
gtest
2022-05-06 22:48:22 +00:00
libbacktrace
2019-10-07 06:48:25 +00:00
lz4
2022-05-06 22:48:22 +00:00
nlohmann_json # alternative JSON parser to rapidjson
protobuf # substrait requires protobuf
2019-10-07 06:48:25 +00:00
rapidjson
2021-01-26 16:35:44 +00:00
re2
2019-10-07 06:48:25 +00:00
snappy
thrift
2020-08-19 20:13:48 +00:00
utf8proc
2019-10-07 06:48:25 +00:00
zlib
zstd
2020-05-12 00:34:33 +00:00
] ++ lib.optionals enableShared [
python3.pkgs.python
python3.pkgs.numpy
] ++ lib.optionals enableFlight [
grpc
openssl
protobuf
] ++ lib.optionals enableS3 [ aws-sdk-cpp openssl ]
++ lib.optionals enableGcs [
crc32c
curl
google-cloud-cpp grpc
nlohmann_json
];
2018-03-16 20:19:24 +00:00
preConfigure = ''
patchShebangs build-support/
substituteInPlace "src/arrow/vendored/datetime/tz.cpp" \
--replace 'discover_tz_dir();' '"${tzdata}/share/zoneinfo";'
2018-03-16 20:19:24 +00:00
'';
2018-03-19 00:13:16 +00:00
cmakeFlags = [
2020-08-19 20:13:48 +00:00
"-DARROW_BUILD_SHARED=${if enableShared then "ON" else "OFF"}"
"-DARROW_BUILD_STATIC=${if enableShared then "OFF" else "ON"}"
"-DARROW_BUILD_TESTS=ON"
2022-05-06 22:48:22 +00:00
"-DARROW_BUILD_INTEGRATION=ON"
"-DARROW_BUILD_UTILITIES=ON"
"-DARROW_EXTRA_ERROR_CONTEXT=ON"
2020-08-19 20:13:48 +00:00
"-DARROW_VERBOSE_THIRDPARTY_BUILD=ON"
"-DARROW_DEPENDENCY_SOURCE=SYSTEM"
2022-08-04 10:55:44 +00:00
"-Dxsimd_SOURCE=AUTO"
2020-08-19 20:13:48 +00:00
"-DARROW_DEPENDENCY_USE_SHARED=${if enableShared then "ON" else "OFF"}"
"-DARROW_COMPUTE=ON"
"-DARROW_CSV=ON"
"-DARROW_DATASET=ON"
2022-02-04 20:18:59 +00:00
"-DARROW_ENGINE=ON"
"-DARROW_FILESYSTEM=ON"
2022-02-05 14:02:52 +00:00
"-DARROW_FLIGHT_SQL=${if enableFlight then "ON" else "OFF"}"
2022-02-17 12:11:42 +00:00
"-DARROW_HDFS=ON"
2022-02-04 20:18:59 +00:00
"-DARROW_IPC=ON"
"-DARROW_JEMALLOC=${if enableJemalloc then "ON" else "OFF"}"
"-DARROW_JSON=ON"
"-DARROW_PLASMA=ON"
2019-12-16 12:22:20 +00:00
# Disable Python for static mode because openblas is currently broken there.
"-DARROW_PYTHON=${if enableShared then "ON" else "OFF"}"
"-DARROW_USE_GLOG=ON"
2022-05-06 22:48:22 +00:00
"-DARROW_WITH_BACKTRACE=ON"
"-DARROW_WITH_BROTLI=ON"
"-DARROW_WITH_LZ4=ON"
2022-05-06 22:48:22 +00:00
"-DARROW_WITH_NLOHMANN_JSON=ON"
"-DARROW_WITH_SNAPPY=ON"
2020-08-19 20:13:48 +00:00
"-DARROW_WITH_UTF8PROC=ON"
"-DARROW_WITH_ZLIB=ON"
"-DARROW_WITH_ZSTD=ON"
2020-08-19 20:13:48 +00:00
"-DARROW_MIMALLOC=ON"
# Parquet options:
"-DARROW_PARQUET=ON"
2022-05-06 22:48:22 +00:00
"-DARROW_SUBSTRAIT=ON"
"-DPARQUET_BUILD_EXECUTABLES=ON"
"-DARROW_FLIGHT=${if enableFlight then "ON" else "OFF"}"
2022-05-06 22:48:22 +00:00
"-DARROW_FLIGHT_TESTING=${if enableFlight then "ON" else "OFF"}"
2021-11-04 13:05:51 +00:00
"-DARROW_S3=${if enableS3 then "ON" else "OFF"}"
"-DARROW_GCS=${if enableGcs then "ON" else "OFF"}"
2019-07-20 19:24:12 +00:00
] ++ lib.optionals (!enableShared) [
2019-12-16 12:22:20 +00:00
"-DARROW_TEST_LINKAGE=static"
] ++ lib.optionals stdenv.isDarwin [
"-DCMAKE_INSTALL_RPATH=@loader_path/../lib" # needed for tools executables
2021-11-04 13:05:51 +00:00
] ++ lib.optional (!stdenv.isx86_64) "-DARROW_USE_SIMD=OFF"
++ lib.optional enableS3 "-DAWSSDK_CORE_HEADER_FILE=${aws-sdk-cpp}/include/aws/core/Aws.h"
++ lib.optionals enableGcs [ "-DCMAKE_CXX_STANDARD=${grpc.cxxStandard}" ];
2018-03-19 00:13:16 +00:00
doInstallCheck = true;
ARROW_TEST_DATA = lib.optionalString doInstallCheck "${arrow-testing}/data";
PARQUET_TEST_DATA = lib.optionalString doInstallCheck "${parquet-testing}/data";
2021-01-26 16:35:44 +00:00
GTEST_FILTER =
let
2021-01-26 16:35:44 +00:00
# Upstream Issue: https://issues.apache.org/jira/browse/ARROW-11398
filteredTests = lib.optionals stdenv.hostPlatform.isAarch64 [
"TestFilterKernelWithNumeric/3.CompareArrayAndFilterRandomNumeric"
"TestFilterKernelWithNumeric/7.CompareArrayAndFilterRandomNumeric"
"TestCompareKernel.PrimitiveRandomTests"
2021-11-04 13:05:51 +00:00
] ++ lib.optionals enableS3 [
"S3OptionsTest.FromUri"
"S3RegionResolutionTest.NonExistentBucket"
2021-11-04 13:05:51 +00:00
"S3RegionResolutionTest.PublicBucket"
"S3RegionResolutionTest.RestrictedBucket"
"TestMinioServer.Connect"
"TestS3FS.*"
2021-11-06 11:03:13 +00:00
"TestS3FSGeneric.*"
2021-01-26 16:35:44 +00:00
];
in
lib.optionalString doInstallCheck "-${builtins.concatStringsSep ":" filteredTests}";
__darwinAllowLocalNetworking = true;
2022-02-04 20:18:59 +00:00
installCheckInputs = [ perl which sqlite ] ++ lib.optional enableS3 minio;
installCheckPhase =
let
excludedTests = lib.optionals stdenv.isDarwin [
# Some plasma tests need to be patched to use a shorter AF_UNIX socket
# path on Darwin. See https://github.com/NixOS/nix/pull/1085
"plasma-external-store-tests"
"plasma-client-tests"
2022-02-04 20:18:59 +00:00
] ++ [ "arrow-gcsfs-test" ];
in
''
runHook preInstallCheck
ctest -L unittest \
--exclude-regex '^(${builtins.concatStringsSep "|" excludedTests})$'
runHook postInstallCheck
'';
2021-05-29 07:30:51 +00:00
meta = with lib; {
description = "A cross-language development platform for in-memory data";
homepage = "https://arrow.apache.org/docs/cpp/";
2021-05-29 07:30:51 +00:00
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ tobim veprbl cpcloud ];
2018-03-16 20:19:24 +00:00
};
passthru = {
inherit enableFlight enableJemalloc enableS3 enableGcs;
};
2018-03-16 20:19:24 +00:00
}