From f171e5c22d719a0741b3ac1b502bf63e52d494c8 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Thu, 17 Feb 2022 07:13:46 -0500 Subject: [PATCH] python3Packages.pyarrow: add cloudpickle, cffi, scipy and fsspec to propagatedBuildInputs --- pkgs/development/python-modules/pyarrow/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix index e6df68632b2c..a6b6ad316167 100644 --- a/pkgs/development/python-modules/pyarrow/default.nix +++ b/pkgs/development/python-modules/pyarrow/default.nix @@ -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 ]; }; } - -