summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-07-30 19:25:21 -0300
committerVinicius Monego <monego@posteo.net>2025-08-02 09:15:50 -0300
commitc23d29f9b8112e886e693571ac08db49567260b6 (patch)
treee2507ce1143a966cbb1fe3dfc70d14b71343c4ff
parent524ce500c00b4459e6c41c8755098b1040503467 (diff)
gnu: python-pystitcher: Improve style.
* gnu/packages/python-xyz.scm (python-pysticher): Run guix style. Change-Id: I217d2a57ff726405dffade69ef34ae43ca956a68
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 10a31a16e2..91912e35e4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8037,19 +8037,18 @@ logic-free templating system Mustache.")
(source
(origin
(method git-fetch)
- (uri
- (git-reference
- (url "https://github.com/captn3m0/pystitcher")
- (commit
- (string-append "v" version))))
- (file-name
- (git-file-name name version))
+ (uri (git-reference
+ (url "https://github.com/captn3m0/pystitcher")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32 "03yrzqhcsjdj5zprrk3bh5bbyqfy3vfhxra9974vmkir3m121394"))))
(build-system python-build-system)
- (inputs
- (list python-html5lib python-importlib-metadata python-markdown
- python-pypdf3 python-validators))
+ (inputs (list python-html5lib
+ python-importlib-metadata
+ python-markdown
+ python-pypdf3
+ python-validators))
(home-page "https://github.com/captn3m0/pystitcher")
(synopsis "Declaratively stitch together a PDF file from multiple sources")
(description