diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-18 23:43:33 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-18 23:46:27 +0100 |
commit | 0fa926c2e595e2e121a5e65b70fda63e8e37904c (patch) | |
tree | 7f8e9661dbb878d46c3d354c8d10c45f7ce056d4 | |
parent | e58d3a59261a028781eceaf190715c768ec134fb (diff) | |
download | patches-0fa926c2e595e2e121a5e65b70fda63e8e37904c.tar patches-0fa926c2e595e2e121a5e65b70fda63e8e37904c.tar.gz |
gnu: python-pyarrow: Update to 0.10.0.
* gnu/packages/databases.scm (python-pyarrow): Update to 0.10.0.
[arguments]: Delete "build" phase.
[native-inputs]: Add python-pytest-runner.
-rw-r--r-- | gnu/packages/databases.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index f5ed20c4a0..301c4986c5 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2778,7 +2778,7 @@ algorithm implementations.") (define-public python-pyarrow (package (name "python-pyarrow") - (version "0.7.0") + (version "0.10.0") (source (origin (method git-fetch) @@ -2787,14 +2787,14 @@ algorithm implementations.") (commit (string-append "apache-arrow-" version)))) (file-name (git-file-name name version)) (sha256 - (base32 - "1x7sdd8lbs3nfqjql1pcgbkjc19bls56zmgjayshkmablvlc4dy3")))) + (base32 + "04xkp922b8qrrnpvv9ixxnvk7151n1plzx6aqdff6frn9651zvxs")))) (build-system python-build-system) (arguments - '(#:tests? #f ; XXX Test failures related to missing libhdfs, libhdfs3, - ; and "Unsupported numpy type 22". + '(#:tests? #f ; XXX There are no tests in the "python" directory #:phases (modify-phases %standard-phases + (delete 'build) ; XXX the build is performed again during the install phase (add-after 'unpack 'enter-source-directory (lambda _ (chdir "python") #t)) (add-after 'unpack 'set-env @@ -2810,6 +2810,7 @@ algorithm implementations.") `(("cmake" ,cmake) ("python-cython" ,python-cython) ("python-pytest" ,python-pytest) + ("python-pytest-runner" ,python-pytest-runner) ("python-setuptools-scm" ,python-setuptools-scm))) (home-page "https://arrow.apache.org/docs/python/") (synopsis "Python bindings for Apache Arrow") |