summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-21 17:05:02 -0300
committerVinicius Monego <monego@posteo.net>2025-06-21 23:27:33 -0300
commitb6b6d5069811e8d117861ae7e67e229f432b8112 (patch)
treee12ec100006c7572cf1ae62136132b524e8cb73b /gnu/packages/python-xyz.scm
parent955065efc14fa41846891d4096c571474e2356cc (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files 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