guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b6b6d5069811e8d117861ae7e67e229f432b8112
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Jun 21 17:05:02 2025 -0300
gnu: python-dirsync: Update to 2.2.6.
* gnu/packages/python-xyz.scm (python-dirsync): Update to 2.2.6.
[build-system]: Use pyproject-build-system.
[arguments]: Skip tests.
[native-inputs]: Add python-setuptools, python-wheel.
[propagated-inputs]: Remove python-six.
[description]: Improve it.
Change-Id: I1e60fd525ed4402bc63df7f213738aeb1c603b0c
---
gnu/packages/python-xyz.scm | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4966b7ba5c..eda7c2ddde 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26247,20 +26247,24 @@ parts of the lines that were modified.")
(define-public python-dirsync
(package
(name "python-dirsync")
- (version "2.2.5")
+ (version "2.2.6")
(source
(origin
(method url-fetch)
(uri (pypi-uri "dirsync" version))
(sha256
(base32
- "1gm82jddm1lkazdi8lfsl1b3vi1z0252ng60mzjym8irnv94qfhy"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-six))
+ "1g3h0lva0mgmm4i5z62h8jkv9y1mp5xlvl2w2nfa3galbgn5gdak"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; No tests in PyPI release and GitHub repository does not have the
+ ;; latest release tag.
+ (list #:tests? #f))
+ (native-inputs (list python-setuptools python-wheel))
(home-page "https://github.com/tkhyn/dirsync")
(synopsis "Advanced directory tree synchronisation tool")
- (description "Advanced directory tree synchronisation tool.")
+ (description
+ "Dirsync is an advanced directory tree synchronisation tool.")
(license license:expat)))
(define-public python-levenshtein