diff options
author | jgart <jgart@dismail.de> | 2024-12-23 10:52:52 -0600 |
---|---|---|
committer | jgart <jgart@dismail.de> | 2024-12-23 10:57:30 -0600 |
commit | ded00097584353f1538df8e72d4e1e055c103a0d (patch) | |
tree | 1e99d41d24d1ca7693cd55d52310af8da099979d /gnu/packages/python-xyz.scm | |
parent | 5f97c07540ba4787b6302bef9b4e4347854363af (diff) |
gnu: python-pypandoc: Use gexp style.
* gnu/packages/python-xyz.scm (python-pypandoc): Use gexp style.
Signed-off-by: jgart <jgart@dismail.de>
Change-Id: Id1197e0683b43481ebb39bc8dd1aa55acf3ec03b
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 00e98bfa99..befae516c1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33716,18 +33716,20 @@ By default it uses the open Python vulnerability database Safety DB.") (base32 "15x161bxr7hky7rvq0jlgf1kxg6vdf069487casmpyxry7slak3b")))) (build-system pyproject-build-system) (arguments - `(#:phases (modify-phases %standard-phases - (add-before 'check 'disable-tests - (lambda _ - (substitute* "tests.py" - ;; Disable test requiring network access - (("test_basic_conversion_from_http_url") - "skip_test_basic_conversion_from_http_url") - ;; Disable tests with missing files - (("test_basic_conversion_from_file_pattern") - "skip_test_basic_conversion_from_file_pattern") - (("test_conversion_with_data_files") - "skip_test_conversion_with_data_files")) #t))))) + (list + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'disable-tests + (lambda _ + (substitute* "tests.py" + ;; Disable test requiring network access + (("test_basic_conversion_from_http_url") + "skip_test_basic_conversion_from_http_url") + ;; Disable tests with missing files + (("test_basic_conversion_from_file_pattern") + "skip_test_basic_conversion_from_file_pattern") + (("test_conversion_with_data_files") + "skip_test_conversion_with_data_files"))))))) ;; Ideally, we would supersede texlive-xpatch with texlive-regexpatch once ;; the missing etoolbox.sty file is added (native-inputs |