guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 98c92f116ea9cf136523c19a657d93f4ce148196
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Aug 2 11:31:55 2025 -0300
gnu: python-dparse: Improve style.
* gnu/packages/python-xyz.scm (python-dparse): Run guix style.
Change-Id: Ibafa341c0004fde1763778c6d6012166045971d3
---
gnu/packages/python-xyz.scm | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e24cd2288f..4638325fe1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34288,17 +34288,14 @@ dates in almost any string formats commonly found on
web pages.")
(name "python-dparse")
(version "0.5.1")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "dparse" version))
- (sha256
- (base32
- "0rzkg3nymsbwdjc0ms2bsajkda02jipwyp3xk97qj71f21lz3dd1"))))
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "dparse" version))
+ (sha256
+ (base32 "0rzkg3nymsbwdjc0ms2bsajkda02jipwyp3xk97qj71f21lz3dd1"))))
(build-system python-build-system)
- (native-inputs
- (list python-pytest))
- (propagated-inputs
- (list python-packaging python-pyyaml python-toml))
+ (native-inputs (list python-pytest))
+ (propagated-inputs (list python-packaging python-pyyaml python-toml))
(home-page "https://github.com/pyupio/dparse")
(synopsis "Parser for Python dependency files")
(description "This package provides a parser for Python dependency files.")