guix_mirror_bot pushed a commit to branch master
in repository guix.

commit fb7c4d8ca87c44f531f04958223142041c69947b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 12 23:42:33 2025 +0100

    gnu: python-uniseg: Update to 0.10.0.
    
    * gnu/packages/python-xyz.scm (python-uniseg): Update to 0.10.0.
    [build-system]: Switch to pyproejct-build-system.
    [arguments] <tests?>: Enable them.
    [native-inputs]: Remove unzip; add python-pytest, python-setuptools, and
    python-setuptools-scm.
    
    Change-Id: I0171be3a4372ddc2ee366ba114d8a2ce0e8d9e73
---
 gnu/packages/python-xyz.scm | 21 +++++++++------------
 1 file changed, 9 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 01769f423b..6ba6a6ad1c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5425,23 +5425,20 @@ other machines, such as over the network.")
 (define-public python-uniseg
   (package
     (name "python-uniseg")
-    (version "0.7.1")
+    (version "0.10.0")
     (source
      (origin
        (method url-fetch)
-       (uri (pypi-uri "uniseg" version ".zip"))
+       (uri (pypi-uri "uniseg" version))
        (sha256
-        (base32
-         "05jsazvz6nbmh6l3v1rph5ydkqn1hzx1pyggdyvgp2qgmgrnmiz2"))))
-    (build-system python-build-system)
-    (arguments
-     '(#:tests? #f)) ; The test suite requires network access.
+        (base32 "18sj1i7xlssrsfwlr95bd4x78mfhq0v6irfx3b7fkgr17a5jbsmm"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list unzip))
-    (home-page
-     "https://bitbucket.org/emptypage/uniseg-python";)
-    (synopsis
-     "Python library to determine Unicode text segmentations")
+     (list python-pytest
+           python-setuptools
+           python-setuptools-scm))
+    (home-page "https://bitbucket.org/emptypage/uniseg-python";)
+    (synopsis "Python library to determine Unicode text segmentations")
     (description
      "Uniseg is a Python package used to determine Unicode text segmentations.
 Supported segmentations include:

Reply via email to