python3Packages.pyarrow: enable dataset module

This commit is contained in:
Phillip Cloud 2021-11-28 09:29:49 -05:00
parent af180d554b
commit 442468f4ad
No known key found for this signature in database
GPG Key ID: D908212070FD785E

View File

@ -17,7 +17,10 @@ buildPythonPackage rec {
checkInputs = [ hypothesis pandas pytestCheckHook pytest-lazy-fixture ];
PYARROW_BUILD_TYPE = "release";
PYARROW_WITH_DATASET = true;
PYARROW_WITH_PARQUET = true;
PYARROW_CMAKE_OPTIONS = [
"-DCMAKE_INSTALL_RPATH=${ARROW_HOME}/lib"
@ -62,6 +65,6 @@ buildPythonPackage rec {
homepage = "https://arrow.apache.org/";
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ veprbl ];
maintainers = with maintainers; [ veprbl cpcloud ];
};
}