gnu: python-transient: Move to pyproject-build-system.

* gnu/packages/virtualization.scm (python-transient)[build-system]:
Move to pyproject-build-system.

Change-Id: I29969738f862ea26fbaa9cb7642f98336f37c583
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Nicolas Graves 2024-05-10 00:52:57 +02:00 committed by Sharlatan Hellseher
parent 083fcf1ede
commit e187c39fce
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -32,6 +32,7 @@
;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org> ;;; Copyright © 2023 Ahmad Draidi <a.r.draidi@redscript.org>
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2023, 2024 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2023, 2024 Hartmut Goebel <h.goebel@crazy-compilers.com>
;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2024 Raven Hallsby <karl@hallsby.com> ;;; Copyright © 2024 Raven Hallsby <karl@hallsby.com>
;;; Copyright © 2024 jgart <jgart@dismail.de> ;;; Copyright © 2024 jgart <jgart@dismail.de>
@ -2844,9 +2845,8 @@ use with virtualization provisioning tools")
(method url-fetch) (method url-fetch)
(uri (pypi-uri "transient" version)) (uri (pypi-uri "transient" version))
(sha256 (sha256
(base32 (base32 "148yiqrmcscsi6787y0f27i1y9cf0gcw3mqfv5frhpmsmv62mv5z"))))
"148yiqrmcscsi6787y0f27i1y9cf0gcw3mqfv5frhpmsmv62mv5z")))) (build-system pyproject-build-system)
(build-system python-build-system)
(arguments (arguments
`(#:tests? #f ; Requires behave `(#:tests? #f ; Requires behave
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
@ -2854,8 +2854,12 @@ use with virtualization provisioning tools")
(lambda _ (lambda _
(substitute* "setup.py" (substitute* "setup.py"
(("==") (("==")
">=")) ">=")))))))
#t))))) (native-inputs
(list python-black
python-mypy
python-pyhamcrest
python-twine))
(propagated-inputs (propagated-inputs
(list python-beautifultable (list python-beautifultable
python-click python-click
@ -2865,12 +2869,8 @@ use with virtualization provisioning tools")
python-progressbar2 python-progressbar2
python-requests python-requests
python-toml)) python-toml))
(native-inputs (home-page "https://github.com/ALSchwalm/transient")
(list python-black python-mypy python-pyhamcrest python-twine)) (synopsis "QEMU Wrapper written in Python")
(home-page
"https://github.com/ALSchwalm/transient")
(synopsis
"QEMU Wrapper written in Python")
(description (description
"@code{transient} is a wrapper for QEMU allowing the creation of virtual "@code{transient} is a wrapper for QEMU allowing the creation of virtual
machines with shared folder, ssh, and disk creation support.") machines with shared folder, ssh, and disk creation support.")