summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-25 11:09:10 +0100
committerRutherther <rutherther@ditigal.xyz>2026-01-25 21:22:54 +0100
commita3630fbf544fc96691c455564cce339b6b84e7f8 (patch)
tree0f411b7f79b38c1442788b0e85529fd3b9ca3375 /gnu/packages/python-xyz.scm
parentb11c3483c334459bcd5e3542cc60af39da2e3346 (diff)
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 <sharlatanus@gmail.com> Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm25
1 files changed, 16 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 65a68d64da4..af11975d02e 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)))