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.
This commit is contained in:
Ricardo Wurmus 2019-03-18 23:43:33 +01:00
parent e58d3a5926
commit 0fa926c2e5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 5 deletions

View File

@ -2778,7 +2778,7 @@ algorithm implementations.")
(define-public python-pyarrow (define-public python-pyarrow
(package (package
(name "python-pyarrow") (name "python-pyarrow")
(version "0.7.0") (version "0.10.0")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -2788,13 +2788,13 @@ algorithm implementations.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"1x7sdd8lbs3nfqjql1pcgbkjc19bls56zmgjayshkmablvlc4dy3")))) "04xkp922b8qrrnpvv9ixxnvk7151n1plzx6aqdff6frn9651zvxs"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
'(#:tests? #f ; XXX Test failures related to missing libhdfs, libhdfs3, '(#:tests? #f ; XXX There are no tests in the "python" directory
; and "Unsupported numpy type 22".
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'build) ; XXX the build is performed again during the install phase
(add-after 'unpack 'enter-source-directory (add-after 'unpack 'enter-source-directory
(lambda _ (chdir "python") #t)) (lambda _ (chdir "python") #t))
(add-after 'unpack 'set-env (add-after 'unpack 'set-env
@ -2810,6 +2810,7 @@ algorithm implementations.")
`(("cmake" ,cmake) `(("cmake" ,cmake)
("python-cython" ,python-cython) ("python-cython" ,python-cython)
("python-pytest" ,python-pytest) ("python-pytest" ,python-pytest)
("python-pytest-runner" ,python-pytest-runner)
("python-setuptools-scm" ,python-setuptools-scm))) ("python-setuptools-scm" ,python-setuptools-scm)))
(home-page "https://arrow.apache.org/docs/python/") (home-page "https://arrow.apache.org/docs/python/")
(synopsis "Python bindings for Apache Arrow") (synopsis "Python bindings for Apache Arrow")