summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-29 22:43:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-03 07:40:21 +0000
commitec1fa9e288b7af24145bf0ebfe3fe75c79a1d49e (patch)
treea4fe32c76c251859f96ec905f495280f293df54b
parent222d23d8cbf0bccbdcf80c4d30bc2ed786327f05 (diff)
gnu: python-pdf2image: Replace python-nose by python-pynose.
* gnu/packages/python-xyz.scm (python-pdf2image) [arguments]: Improve style. [native-inputs]: Remove python-wheel. Replace python-nose by python-pynose. Change-Id: I2a7f607931144c6858efc95f4845f2866be0224d Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6e9b4eca676..d54e50dcdb7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12498,7 +12498,6 @@ classes. It is forked from @code{cached-property}.")
(package
(name "python-pdf2image")
(version "1.17.0")
- ;; No tests in the PyPI tarball.
(source
(origin
(method git-fetch)
@@ -12510,13 +12509,15 @@ classes. It is forked from @code{cached-property}.")
(base32 "0xd8q939zqa8flfcdhbgyadiwqb8sgnd42cbr6n1l2jl9fnix45v"))))
(build-system pyproject-build-system)
(arguments
- ;; The following excluded tests assume hardcoded binary paths to
- ;; /usr/bin/pdftoppm and /usr/bin/pdftocairo.
- '(#:test-flags '("--exclude=^test_use_poppler_path$"
- "--exclude=^test_use_poppler_path_with_trailing_slash$")))
+ (list
+ ;; The following excluded tests assume hardcoded binary paths to
+ ;; /usr/bin/pdftoppm and /usr/bin/pdftocairo.
+ #:test-flags
+ #~(list "--exclude=^test_use_poppler_path$"
+ "--exclude=^test_use_poppler_path_with_trailing_slash$")))
(propagated-inputs (list python-pillow))
(inputs (list poppler))
- (native-inputs (list python-nose which python-setuptools python-wheel))
+ (native-inputs (list python-pynose which python-setuptools))
(home-page "https://github.com/Belval/pdf2image")
(synopsis
"Python wrapper around @command{pdftoppm} and @command{pdftocairo}")