python3Packages.pyarrow: add cloudpickle, cffi, scipy and fsspec to propagatedBuildInputs

This commit is contained in:
Phillip Cloud
2022-02-18 06:52:57 -05:00
parent 0d6ee4eb63
commit f171e5c22d
@@ -4,14 +4,18 @@
, python
, isPy3k
, arrow-cpp
, cffi
, cloudpickle
, cmake
, cython
, fsspec
, hypothesis
, numpy
, pandas
, pytestCheckHook
, pytest-lazy-fixture
, pkg-config
, scipy
, setuptools-scm
, six
}:
@@ -31,7 +35,7 @@ buildPythonPackage rec {
sourceRoot = "apache-arrow-${version}/python";
nativeBuildInputs = [ cmake cython pkg-config setuptools-scm ];
propagatedBuildInputs = [ numpy six ];
propagatedBuildInputs = [ numpy six cloudpickle scipy fsspec cffi ];
checkInputs = [
hypothesis
pandas
@@ -108,5 +112,3 @@ buildPythonPackage rec {
maintainers = with maintainers; [ veprbl cpcloud ];
};
}