guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 6f7cce121c4dc6e1e7871fd880049e77905e1fba
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Dec 25 11:09:10 2025 +0100

    gnu: python-crossenv: Update to 1.6.1.
    
    * gnu/packages/python-xyz.scm (python-crossenv): Update to 1.6.1.
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-hatchling.
    [description]: Improve style.
    
    Change-Id: Ic5fe3baf91dd4aa71d92c8b54d433e55d1ada17c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 25 ++++++++++++++++---------
 1 file changed, 16 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f05766d729..e408203f19 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8717,21 +8717,28 @@ provides Python-specific tags that represent an 
arbitrary Python object.")
 (define-public python-crossenv
   (package
     (name "python-crossenv")
-    (version "1.5.0")
+    (version "1.6.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "crossenv" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/benfogle/crossenv";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "0f9x3f506pl45ip1nm3fx8gzwm1hr7w1b0bib4kg74zph7jmz72x"))))
-    (build-system python-build-system)
+        (base32 "15mj5kfb30jj0m1jj8qz19zdf53380j14hzj2rx13ilnr1d7j6rn"))))
+    (build-system pyproject-build-system)
     (arguments
-     (list #:tests? #f)) ; tests not distributed on pypi
+     (list
+      ;; XXX: Running test require setting environment variables for
+      ;; architectures.
+      #:tests? #f))
+    (native-inputs (list python-hatchling))
     (home-page "https://github.com/benfogle/crossenv";)
     (synopsis "Cross-compiling virtualenv for Python")
-    (description "This package is a tool for cross-compiling extension
-modules.  It creates a special virtual environment such that @command{pip} or
+    (description
+     "This package is a tool for cross-compiling extension modules.  It
+creates a special virtual environment such that @command{pip} or
 @file{setup.py} will cross compile packages for you, usually with no further
 work on your part.")
     (license license:expat)))

Reply via email to