10 buildPythonPackage rec {
12 pname = "python-vagrant";
15 src = fetchFromGitHub {
17 repo = "python-vagrant";
18 rev = "refs/tags/v${version}";
19 hash = "sha256-apvYzH0IY6ZyUP/FiOVbGN3dXejgN7gn7Mq2tlEaTww=";
28 # The tests try to connect to qemu
31 pythonImportsCheck = [ "vagrant" ];
34 description = "Python module that provides a thin wrapper around the vagrant command line executable";
35 homepage = "https://github.com/todddeluca/python-vagrant";
36 license = lib.licenses.mit;
37 maintainers = [ lib.maintainers.pmiddend ];