summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSergey Trofimov <sarg@sarg.org.ru>2025-12-18 11:35:28 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-18 23:22:44 +0000
commite6ca4b6096dba2f968f9e2a45445b29dbe13db2b (patch)
tree485a66f50696c99b021f319ca17b94255de8d647 /gnu
parent39a57da7742fcd4fdf8e6babf782ce75bedd3639 (diff)
gnu: stapler: Switch to pyproject.
* gnu/packages/pdf.scm (stapler): Switch to pyproject. [build-system]: Switch to pyproject-build-system. [arguments]<#:phases>{fix-more-itertools-version-requirement}: Adjust. <#:build-backend>: Use poetry.core.masonry.api. <#:test-flags>: Specify test files. [native-inputs]: Add python-poetry-core, python-pytest, python-setuptools. Change-Id: Ic1e0811f97b17dcdc1b639f13c6f8e750bfc20b0 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/pdf.scm24
1 files changed, 14 insertions, 10 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm
index 3a20b4de16d..a5446a6daee 100644
--- a/gnu/packages/pdf.scm
+++ b/gnu/packages/pdf.scm
@@ -1733,17 +1733,21 @@ rendering of the file through the Pango Cairo back end.")
(sha256
(base32
"0b2lbm3f79cdxcsagwhzihbzwahjabxqmbws0c8ki25gpdnygdd7"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-more-itertools-version-requirement
- (lambda _
- ;; Tests require an version of the more-itertools module older
- ;; than the one we have packaged.
- (substitute* "setup.py"
- (("more-itertools>=2\\.2,<6\\.0\\.0") "more-itertools>=2.2"))
- #t)))))
+ (list
+ #:test-flags #~(list "staplelib/tests.py") ; from tox.ini
+ #:build-backend "poetry.core.masonry.api"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'fix-more-itertools-version-requirement
+ (lambda _
+ (substitute* "pyproject.toml"
+ ;; Tests require an version of the more-itertools module older
+ ;; than the one we have packaged.
+ (("more-itertools = \">=2.2,<6.0.0\"")
+ "more-itertools = \">=2.2\"")))))))
+ (native-inputs (list python-poetry-core python-pytest python-setuptools))
(propagated-inputs
(list python-more-itertools python-pypdf2))
(home-page "https://github.com/hellerbarde/stapler")