efraim pushed a commit to branch master
in repository guix.
commit 5e95181b9d3e27c68402d99b1523962ca0dd49f1
Author: Efraim Flashner <[email protected]>
Date: Tue Jul 24 17:44:21 2018 +0300
gnu: Add python-vagrant.
* gnu/packages/virtualization.scm (python-vagrant): New variable.
---
gnu/packages/virtualization.scm | 24 +++++++++++++++++++++++-
1 file changed, 23 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 05605a0..e4120de 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <[email protected]>
;;; Copyright © 2015, 2016, 2017, 2018 Mark H Weaver <[email protected]>
-;;; Copyright © 2016, 2017 Efraim Flashner <[email protected]>
+;;; Copyright © 2016, 2017, 2018 Efraim Flashner <[email protected]>
;;; Copyright © 2016, 2017 Ricardo Wurmus <[email protected]>
;;; Copyright © 2017 Alex Vong <[email protected]>
;;; Copyright © 2017 Andy Patterson <[email protected]>
@@ -977,3 +977,25 @@ the image.
@end enumerate")
(license license:asl2.0)))
+
+(define-public python-vagrant
+ (package
+ (name "python-vagrant")
+ (version "0.5.15")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "python-vagrant" version))
+ (sha256
+ (base32
+ "1ikrh6canhcxg5y7pzmkcnnydikppv7s6sm9prfx90nk0ac8m6mg"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:tests? #f)) ; tests involve running vagrant.
+ (home-page "https://github.com/todddeluca/python-vagrant")
+ (synopsis "Python bindings for Vagrant")
+ (description
+ "Python-vagrant is a Python module that provides a thin wrapper around the
+@code{vagrant} command line executable, allowing programmatic control of
Vagrant
+virtual machines.")
+ (license license:expat)))