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

commit bcf4ccf0700e5e63c41437cff0c5984de14ac0cd
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Jan 18 22:15:12 2026 +0100

    gnu: python-pytest-sugar: Update to 1.1.1-0.4b1cd8d.
    
    * gnu/packages/check.scm (python-pytest-sugar): Update to 1.1.1-0.4b1cd8d.
    [source]: Switch to git-fetch.
    [propagated-inputs]: Remove python-packaging.
    [native-inputs]: Remove python-wheel.
    [home-page]: Update it.
    [description]: Update it.
    
    Change-Id: If9105648373c39465cbbc08f4721bf4c25d8491d
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/check.scm | 27 ++++++++++++++++-----------
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index ad8e12b0f6..32a0b2705e 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2642,24 +2642,29 @@ across test runs.")
 (define-public python-pytest-sugar
   (package
     (name "python-pytest-sugar")
-    (version "1.0.0")
+    (properties '((commit . "4b1cd8d03060072db3737983ace80f416534a2c4")
+                  (revision . "0")))
+    (version (git-version "1.1.1"
+                          (assoc-ref properties 'revision)
+                          (assoc-ref properties 'commit)))
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "pytest-sugar" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/Teemu/pytest-sugar";)
+             (commit (assoc-ref properties 'commit))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "02kc4y0ry4y9lp63kjq9p7yvbjijfxn1fcn6wx6c1c7mb0rfh8k4"))))
+        (base32 "1smaxs7qabdfsvr9rvyyfp1d93j8vm0ghqwk4cskc9bnfhbhdn7d"))))
     (build-system pyproject-build-system)
-    (propagated-inputs
-     (list python-packaging python-pytest python-termcolor))
-    (native-inputs
-     (list python-setuptools python-wheel))
-    (home-page "https://pivotfinland.com/pytest-sugar/";)
+    (propagated-inputs (list python-pytest python-termcolor))
+    (native-inputs (list python-setuptools))
+    (home-page "https://github.com/Teemu/pytest-sugar";)
     (synopsis "Plugin for pytest that changes the default look and feel")
     (description
      "@code{pytest-sugar} is a plugin for py.test that changes the default
-look and feel of py.test, using a progress bar and showing failures and errors
-instantly.")
+look and feel of @code{python-pytest}, using a progress bar and showing
+failures and errors instantly.")
     (license license:bsd-3)))
 
 (define-public python-hypothesis

Reply via email to