diff options
| author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2026-07-13 18:33:03 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-08-08 23:02:25 +0100 |
| commit | 10a075b30ed174c5bfbe42582822bc763a9c3479 (patch) | |
| tree | e034a5955fd6b7705502cd2efda277ec461b5b2b | |
| parent | 0f4dcace6f3ecc32a7cf66a821a8ab8e8b2a1430 (diff) | |
gnu: python-beautifultable: Fix build for Pandas 3.
* gnu/packages/python-xyz.scm (python-beautifultable):Fix build.
[arguments]<#:test-flags>: Skip failing test.
[native-inputs]: Add python-pytest.
Change-Id: I2caeebe6466105feea27e0579bc765ea0616e964
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 91118b13319..f3b1b526bae 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm | |||
| @@ -27906,8 +27906,14 @@ application.") | |||
| 27906 | (sha256 | 27906 | (sha256 |
| 27907 | (base32 "0b6c7dpc45sm3vn65qm00q20sdgpi78xxzwc0rij7hnj9c45w97x")))) | 27907 | (base32 "0b6c7dpc45sm3vn65qm00q20sdgpi78xxzwc0rij7hnj9c45w97x")))) |
| 27908 | (build-system pyproject-build-system) | 27908 | (build-system pyproject-build-system) |
| 27909 | (arguments (list #:test-backend #~'unittest)) | 27909 | (arguments |
| 27910 | (native-inputs (list python-pandas python-setuptools)) | 27910 | (list |
| 27911 | ;; Fails because a None is converted to nan, probably due to Pandas 3. | ||
| 27912 | #:test-flags | ||
| 27913 | #~(list "-k" "not test_df_export_scenario2" "test.py"))) | ||
| 27914 | (native-inputs (list python-pandas | ||
| 27915 | python-pytest | ||
| 27916 | python-setuptools)) | ||
| 27911 | (propagated-inputs (list python-wcwidth)) | 27917 | (propagated-inputs (list python-wcwidth)) |
| 27912 | (home-page "https://github.com/pri22296/beautifultable") | 27918 | (home-page "https://github.com/pri22296/beautifultable") |
| 27913 | (synopsis "Print ASCII tables for terminals") | 27919 | (synopsis "Print ASCII tables for terminals") |
