summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-05-10 13:22:54 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:19:33 +0100
commit27c3c72525d01f3da266c623c5260ef4a266ef3c (patch)
treed425d757393a5224035f4572cfec7050665cf305 /gnu/packages/python-science.scm
parent5e39e546002aa4b556a6807b37b1b5d4e423eb49 (diff)
gnu: python-polars: Disable tests temporarily.
Rationale: We could already do that, but polars is outdated, costly to compile, python-team is already blocking the queue for more that a week, and it'll be easier to write after delete-all-but has made it into guix. It seems more convenient to postpone that for a couple of weeks than fix it now. * gnu/packages/python-science.scm (python-polars)[arguments] <#:tests?>: Disable them. Change-Id: I3bb722021cb5f99f70515c598c84ce8de5afeb20 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm5
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 1b8a76c6193..b86c50d0f72 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -6054,6 +6054,11 @@ It is designed to be fast, easy to use and expressive.")
6054 (sha256 6054 (sha256
6055 (base32 "0fc2fx2p72g01nhhhfs1fzbwz58rcj7zppascanq1y2f6kjjnfl0")))) 6055 (base32 "0fc2fx2p72g01nhhhfs1fzbwz58rcj7zppascanq1y2f6kjjnfl0"))))
6056 (build-system pyproject-build-system) 6056 (build-system pyproject-build-system)
6057 ;; The wheel doesn't have tests.
6058 ;; TODO On the next update, hopefully if delete-all-but has made it
6059 ;; into guix, switch to a git-source and keep src/polars and tests
6060 ;; subdirectories.
6061 (arguments (list #:tests? #f))
6057 (propagated-inputs (list python-polars-runtime-32)) 6062 (propagated-inputs (list python-polars-runtime-32))
6058 (native-inputs (list python-setuptools)) 6063 (native-inputs (list python-setuptools))
6059 (home-page "https://pola.rs/") 6064 (home-page "https://pola.rs/")