gnu: python-vagrant: Update to 1.1.0.

* gnu/packages/virtualization.scm (python-vagrant): Update to 1.1.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.

Change-Id: Ib886c4320655df628203e235171f98a4d19e118c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-12-21 19:05:38 +01:00 committed by Sharlatan Hellseher
parent adbf5f9d51
commit fb99bbfbc5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2953,17 +2953,20 @@ created virtual machines and the respective ssh-parameters.")
(define-public python-vagrant
(package
(name "python-vagrant")
(version "0.5.15")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-vagrant" version))
(sha256
(base32
"1ikrh6canhcxg5y7pzmkcnnydikppv7s6sm9prfx90nk0ac8m6mg"))))
(build-system python-build-system)
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/todddeluca/python-vagrant")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "032g398vddnaxhkvhdz0x1fxvp8qbgjqiigza1racqq8gp6di6va"))))
(build-system pyproject-build-system)
(arguments
'(#:tests? #f)) ; tests involve running vagrant.
(list #:tests? #f)) ;tests involve running vagrant.
(native-inputs (list python-setuptools))
(home-page "https://github.com/todddeluca/python-vagrant")
(synopsis "Python bindings for Vagrant")
(description