summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-xyz.scm35
1 files changed, 13 insertions, 22 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ab73f3256f9..998f86f768f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31870,42 +31870,33 @@ positioning, and keyboard input.")
31870(define-public python-readme-renderer 31870(define-public python-readme-renderer
31871 (package 31871 (package
31872 (name "python-readme-renderer") 31872 (name "python-readme-renderer")
31873 (properties '((commit . "e603eb17fcabd6bd20706d278fc24a7e9a663190") 31873 (version "45.0")
31874 (revision . "0")))
31875 (version (git-version "44.0"
31876 (assoc-ref properties 'revision)
31877 (assoc-ref properties 'commit)))
31878 (source 31874 (source
31879 (origin 31875 (origin
31880 (method git-fetch) 31876 (method git-fetch)
31881 (uri (git-reference 31877 (uri (git-reference
31882 (url "https://github.com/pypa/readme_renderer") 31878 (url "https://github.com/pypa/readme_renderer")
31883 (commit (assoc-ref properties 'commit)))) 31879 (commit version)))
31884 (file-name (git-file-name name version)) 31880 (file-name (git-file-name name version))
31885 (sha256 31881 (sha256
31886 (base32 "15w3lzgg8gcq22saqy2cpnv3hvkrixhyn57fcg1p1bm2njh1hr61")))) 31882 (base32 "15ald40v4vv7sb2as8z7jggcwdy0nbx5m0icqv4ii9wriqrzf7kx"))))
31887 (build-system pyproject-build-system) 31883 (build-system pyproject-build-system)
31888 (arguments 31884 (arguments
31889 (list 31885 (list
31886 ;; tests: 99 passed, 2 skipped, 1 deselected, 1 warning
31890 #:test-flags 31887 #:test-flags
31891 '(list "-k" 31888 ;; Assertion error in one test.
31892 (string-append 31889 #~(list (string-append "--deselect=tests/test_markdown.py"
31893 ;; These tests fail due to slight differences in the generated 31890 "::test_md_fixtures[test_GFM_headings.md]"))))
31894 ;; vs expected HTML, e.g. because of difference in whitespace or 31891 (propagated-inputs
31895 ;; line breaks. (See also 31892 (list python-docutils
31896 ;; https://github.com/pypa/readme_renderer/issues/234).
31897 "not test_md_fixtures[test_CommonMark_008.md]"
31898 " and not test_rst_fixtures[test_rst_008.rst]"
31899 " and not GFM"))))
31900 (propagated-inputs
31901 (list python-cmarkgfm
31902 python-docutils
31903 python-nh3 31893 python-nh3
31904 python-pygments)) 31894 python-pygments
31895 ;; [optional]
31896 python-comrak))
31905 (native-inputs 31897 (native-inputs
31906 (list python-pytest 31898 (list python-pytest
31907 python-setuptools 31899 python-setuptools))
31908 python-wheel))
31909 (home-page "https://github.com/pypa/readme_renderer") 31900 (home-page "https://github.com/pypa/readme_renderer")
31910 (synopsis "Render README files in Warehouse") 31901 (synopsis "Render README files in Warehouse")
31911 (description 31902 (description