From b6b6d5069811e8d117861ae7e67e229f432b8112 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 21 Jun 2025 17:05:02 -0300 Subject: [PATCH] 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 4966b7ba5c4e4be646044faed9e6a5cd53f05eda..eda7c2dddecd9fa518e0b5dd0241ecf1a7111a46 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