about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyarrow
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-03-18 20:13:16 -0400
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2018-04-04 09:03:48 -0400
commitf9192c542467085dee4b817ea753ae40916cbf62 (patch)
tree9df73fc5ac33d3b570fc5bd3fa19d7d31f4e312b /pkgs/development/python-modules/pyarrow
parentc5df226c738d26944487914d11a3531745cdd79a (diff)
downloadnixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar.gz
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar.bz2
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar.lz
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar.xz
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.tar.zst
nixlib-f9192c542467085dee4b817ea753ae40916cbf62.zip
pythonPackages.pyarrow: init at 0.8.0
Diffstat (limited to 'pkgs/development/python-modules/pyarrow')
-rw-r--r--pkgs/development/python-modules/pyarrow/default.nix47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyarrow/default.nix b/pkgs/development/python-modules/pyarrow/default.nix
new file mode 100644
index 000000000000..8804953045e4
--- /dev/null
+++ b/pkgs/development/python-modules/pyarrow/default.nix
@@ -0,0 +1,47 @@
+{ lib, buildPythonPackage, fetchurl, arrow-cpp, cmake, cython, futures, numpy, pandas, pytest, pkgconfig, setuptools_scm, six }:
+
+buildPythonPackage rec {
+  pname = "pyarrow";
+  version = "0.8.0";
+
+  src = fetchurl {
+    url = "mirror://apache/arrow/arrow-${version}/apache-arrow-${version}.tar.gz";
+    sha256 = "1i79sh9ip32agbrn4n51pjn9266i45s8spk5jsi8ax0hqy1vhhmi";
+  };
+
+  sourceRoot = "apache-arrow-${version}/python";
+
+  nativeBuildInputs = [ cmake cython pkgconfig setuptools_scm ];
+  propagatedBuildInputs = [ futures numpy six ];
+  checkInputs = [ pandas pytest ];
+
+  PYARROW_BUILD_TYPE = "release";
+  PYARROW_BUNDLE_ARROW_CPP = 1; # sets RPATH on darwin
+
+  preBuild = ''
+    substituteInPlace CMakeLists.txt --replace "''${ARROW_SO_VERSION}" '"0"'
+  '';
+
+  preCheck = ''
+    rm pyarrow/tests/test_hdfs.py
+
+    # fails: "ArrowNotImplementedError: Unsupported numpy type 22"
+    substituteInPlace pyarrow/tests/test_feather.py --replace "test_timedelta_with_nulls" "_disabled"
+
+    # runs out of memory on @grahamcofborg linux box
+    substituteInPlace pyarrow/tests/test_feather.py --replace "test_large_dataframe" "_disabled"
+
+    # probably broken on python2
+    substituteInPlace pyarrow/tests/test_feather.py --replace "test_unicode_filename" "_disabled"
+  '';
+
+  ARROW_HOME = arrow-cpp;
+
+  meta = with lib; {
+    description = "A cross-language development platform for in-memory data";
+    homepage = https://arrow.apache.org/;
+    license = lib.licenses.asl20;
+    platforms = platforms.unix;
+    maintainers = with lib.maintainers; [ veprbl ];
+  };
+}