This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 55b4d55b69 gnu: python-clickgen: Update to 2.2.5.
55b4d55b69 is described below

commit 55b4d55b699ab4a301e54a59759bad8e763a661f
Author: Sergey Trofimov <[email protected]>
AuthorDate: Thu Dec 18 09:20:10 2025 +0100

    gnu: python-clickgen: Update to 2.2.5.
    
    * gnu/packages/python-xyz.scm (python-clickgen): Update to 2.2.5.
    [source]: Fetch from git.
    [build-system]: Switch to pyproject-build-system.
    [arguments]<#:test-flags>: Ignore broken test.
    [inputs]: Remove libx11, libpng, and libxcursor.
    [propagated-inputs]: Add python-pyyaml.
    [native-inputs]: Remove python-wheel; add python-pytest, and
    python-setuptools.
    
    Change-Id: Icb0ba11d9b542f38a02c7ab9262d146cbff329ef
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 31 ++++++++++++++++++++++---------
 1 file changed, 22 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c69a3d76b6..9ca6ca343f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7853,18 +7853,31 @@ with sensible defaults out of the box.")
 (define-public python-clickgen
   (package
     (name "python-clickgen")
-    (version "2.1.3")
+    (version "2.2.5")
     (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "clickgen" version))
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/ful1e5/clickgen";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "010j9zz0gd2za5l4hibicypnfw721x0gxp3rr0329bc97vw5maha"))))
-    (build-system python-build-system)
+                "0gdbkdw9b52wbb0bbhs09bdfyfq979kvlv5sg5p70y3jal9j8lf8"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:test-flags
+      ;; XXX: See: <https://github.com/ful1e5/clickgen/issues/65>.
+      '(list "-k" "not test_clickgen_raises")))
+    (native-inputs
+     (list python-pytest
+           python-setuptools))
     (propagated-inputs
-     (list python-pillow python-toml python-numpy python-attrs))
-    (inputs (list libx11 libpng libxcursor))
-    (native-inputs (list python-wheel))
+     (list python-attrs
+           python-numpy
+           python-pillow
+           python-pyyaml
+           python-toml))
     (home-page "https://github.com/ful1e5/clickgen";)
     (synopsis "The hassle-free cursor building toolbox")
     (description
@@ -19809,7 +19822,7 @@ text.")
 
                           ;; XXX: Probably will be resolved in the next
                           ;; release, as botocore's refresh pace is fast.
-                          ;; 
+                          ;;
                           ;; botocore.exceptions.UnknownServiceError: Unknown
                           ;; service: <...>
                           "test_create_app_response"

Reply via email to