about summary refs log tree commit diff
path: root/pkgs/development/python-modules/awkward
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-05-12 17:19:37 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2020-05-12 17:19:37 -0400
commit2255919b89953a04b5d77d8fe88e04e96ca23e59 (patch)
tree7f345fd004c5e7031b60a1976110599f134b84c5 /pkgs/development/python-modules/awkward
parentf149c7030a73d5be8c9002806d049042a5088c79 (diff)
pythonPackages.awkward: disable arrow support
It appears that upstream doesn't want to support this anymore:
https://github.com/scikit-hep/awkward-array/commit/220bd8df4b59ccdda8daab46643c34d802c3c9d5
Diffstat (limited to 'pkgs/development/python-modules/awkward')
-rw-r--r--pkgs/development/python-modules/awkward/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/awkward/default.nix b/pkgs/development/python-modules/awkward/default.nix
index bd933205f6a90..79406eaa0d5ec 100644
--- a/pkgs/development/python-modules/awkward/default.nix
+++ b/pkgs/development/python-modules/awkward/default.nix
@@ -3,7 +3,6 @@
 , fetchPypi
 , numpy
 , pandas
-, pyarrow
 , pytestrunner
 , pytest
 , h5py
@@ -19,7 +18,7 @@ buildPythonPackage rec {
   };
 
   nativeBuildInputs = [ pytestrunner ];
-  checkInputs = [ pandas pyarrow pytest h5py ];
+  checkInputs = [ pandas pytest h5py ];
   propagatedBuildInputs = [ numpy ];
 
   checkPhase = ''