guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 956ea395b4a4ee3e9745e844cff87e129b28791d
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Fri Jul 18 15:13:01 2025 +0100

    gnu: python-translation-finder: Update to 2.22.
    
    * gnu/packages/python-web.scm (python-translation-finder): Update to 2.22.
      [build-system]: Use pyproject.
      [propagated-inputs]: Remove python-chardet, python-pathlib2, and
      python-six; add python-charset-normalizer-3 and
      python-weblate-language-data.
      [native-inputs]: Remove python-codecov, python-codacy-coverage,
      python-pytest-cov, python-pytest-runner, and python-twine; add
      python-pytest and python-setuptools.
    
    Change-Id: I92a6c70a144a659f188388fb3184aa7f2da399b3
---
 gnu/packages/python-web.scm | 35 +++++++++++++++++------------------
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index df8e65a4f9..c7d7e0e431 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8153,27 +8153,26 @@ for HTTP/2 is planned.")
 (define-public python-translation-finder
   (package
     (name "python-translation-finder")
-    (version "1.7")
+    (version "2.22")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "translation-finder" version))
-        (sha256
-         (base32
-          "1pcy9z8gmb8x41gjhw9x0lkr0d2mv5mdxcs2hwg6q8mxs857j589"))))
-    (build-system python-build-system)
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "translation_finder" version))
+       (sha256
+        (base32 "1hav99ccijvk2w8wpvba2pc7ba1z150vja2wvaimd069mc08pjd2"))))
+    (build-system pyproject-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'build 'remove-failing-test
-           (lambda _
-             (delete-file "translation_finder/test_api.py")
-             #t)))))
-    (propagated-inputs
-     (list python-chardet python-pathlib2 python-ruamel.yaml python-six))
+     (list
+      #:test-flags
+      ;; AssertionError: 31 != 30 : Mismatched count of results
+      #~(list 
"--deselect=translation_finder/test_api.py::APITest::test_discover_file")))
     (native-inputs
-     (list python-codecov python-codacy-coverage python-pytest-cov
-           python-pytest-runner python-twine))
+     (list python-pytest
+           python-setuptools))
+    (propagated-inputs
+     (list python-charset-normalizer-3
+           python-ruamel.yaml
+           python-weblate-language-data))
     (home-page "https://weblate.org/";)
     (synopsis "Translation file finder for Weblate")
     (description "This package provides a function to find translation file in

Reply via email to