~ruther/guix-local

a3630fbf544fc96691c455564cce339b6b84e7f8 — Nicolas Graves 2 months ago b11c348
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>
1 files changed, 16 insertions(+), 9 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +16 -9
@@ 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)))