diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-09-21 20:09:08 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:52 +0100 |
| commit | 31c659b8772ac935e335e6c9eda19cc0c459ff08 (patch) | |
| tree | c43bad88653a0f9abbc69effb2d1b13237eddda3 /gnu/packages/python-xyz.scm | |
| parent | 464c5c6e09970d8c19026fb04af07d619f8d8d57 (diff) | |
gnu: python-pypandoc: Fix tests.
* gnu/packages/python-xyz.scm (python-pypandoc)
[source]: Switch to git-fetch.
[arguments]<#:test-backend>: Set it.
[description]: Improve style.
Change-Id: Idfbd8f57804b30e205fd0d53733cc27b39bab4de
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 56b6bf8a8e..664cc6d417 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34297,13 +34297,17 @@ By default it uses the open Python vulnerability database Safety DB.") (version "1.15") (source (origin - (method url-fetch) - (uri (pypi-uri "pypandoc" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/JessicaTegner/pypandoc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "04yfja8p8flvpjakyw7n43jb1jm3863w043l7zb43bhjwzmvw9ga")))) + (base32 "0jqr380xpg1n93dagxv7zfakhdravw0nc81rc4pnmjzkj360l5nr")))) (build-system pyproject-build-system) (arguments (list + #:test-backend #~'unittest #:phases #~(modify-phases %standard-phases (add-before 'check 'disable-tests @@ -34332,8 +34336,8 @@ By default it uses the open Python vulnerability database Safety DB.") (propagated-inputs (list python-wheel)) (home-page "https://github.com/JessicaTegner/pypandoc") (synopsis "Python wrapper for pandoc") - (description "pypandoc is a thin Python wrapper around pandoc -and pandoc-citeproc.") + (description + "pypandoc is a thin Python wrapper around pandoc and pandoc-citeproc.") (license license:expat))) (define-public python-rnc2rng |
