diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-21 19:05:38 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 22:02:52 +0000 |
| commit | fb99bbfbc52015ff8d98663e8edf109ba97a1f3c (patch) | |
| tree | 468816b39b39114bf1a6a750c405d0c195d16a12 | |
| parent | adbf5f9d51ecf083d27b79b3208e45d7fa6d946f (diff) | |
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>
| -rw-r--r-- | gnu/packages/virtualization.scm | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index d8991d2c008..c4480f9f585 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -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 |
