gnu: qmpbackup: Update to 0.23.

* gnu/packages/virtualization.scm (qmpbackup): Update to 0.23.
[inputs]: Add python-qemu-qmp.
[python]: Delete argument.
[tests?]: New argument.
This commit is contained in:
Maxim Cournoyer 2022-04-29 23:50:17 -04:00
parent 5daac1a797
commit 8f49a084ba
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1702,23 +1702,24 @@ (define-public python-qemu-qmp
(define-public qmpbackup (define-public qmpbackup
(package (package
(name "qmpbackup") (name "qmpbackup")
(version "0.2") (version "0.23")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/abbbi/qmpbackup") (url "https://github.com/abbbi/qmpbackup")
(commit version))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0swhp5byz44brhyis1a39p11fyn9q84xz5q6v2fah29r7d71kmmx")))) "0x9v81z0b2qr2y6m46rfnl4kl5jnixsdrl1c790iwl6pq9kzzvzg"))))
(build-system python-build-system) (build-system python-build-system)
(arguments ;; The test suite requires to download a 241 MiB QEMU image; skip it.
`(#:python ,python-2)) (arguments (list #:tests? #f))
(inputs (list python-qemu-qmp))
(home-page "https://github.com/abbbi/qmpbackup") (home-page "https://github.com/abbbi/qmpbackup")
(synopsis "Backup and restore QEMU machines") (synopsis "Backup and restore QEMU machines")
(description "qmpbackup is designed to create and restore full and (description "@command{qmpbackup} is designed to create and restore full
incremental backups of running QEMU virtual machines via QMP, the QEMU and incremental backups of running QEMU virtual machines via QMP, the QEMU
Machine Protocol.") Machine Protocol.")
(license license:gpl3+))) (license license:gpl3+)))