about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-10-25 23:14:27 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-10-25 23:14:27 -0400
commite76082a9412dad2ee6a5fa113950d539d95c9ca8 (patch)
tree6f0bac2eef05c17c9f920aa441c2dce8c218ed66 /pkgs
parent6ae3cb4d36079d4738c656c4bef6615ba3f064a1 (diff)
downloadnixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar.gz
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar.bz2
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar.lz
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar.xz
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.tar.zst
nixlib-e76082a9412dad2ee6a5fa113950d539d95c9ca8.zip
pyarrow: disable jvm test
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pyarrow/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix
index 981576e13ed0..d588ebb12e47 100644
--- a/pkgs/development/python-modules/pyarrow/default.nix
+++ b/pkgs/development/python-modules/pyarrow/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildPythonPackage, python, isPy3k, fetchurl, arrow-cpp, cmake, cython, futures, JPype1, numpy, pandas, pytest, pkgconfig, setuptools_scm, six }:
+{ lib, buildPythonPackage, python, isPy3k, fetchurl, arrow-cpp, cmake, cython, futures, numpy, pandas, pytest, pkgconfig, setuptools_scm, six }:
 
 let
   _arrow-cpp = arrow-cpp.override { inherit python; };
@@ -13,12 +13,13 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [ cmake cython pkgconfig setuptools_scm ];
   propagatedBuildInputs = [ numpy six ] ++ lib.optionals (!isPy3k) [ futures ];
-  checkInputs = [ pandas pytest JPype1 ];
+  checkInputs = [ pandas pytest ];
 
   PYARROW_BUILD_TYPE = "release";
   PYARROW_CMAKE_OPTIONS = "-DCMAKE_INSTALL_RPATH=${ARROW_HOME}/lib";
 
   preCheck = ''
+    rm pyarrow/tests/test_jvm.py
     rm pyarrow/tests/test_hdfs.py
     rm pyarrow/tests/test_cuda.py