2019-01-28 15:25:18 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2022-03-31 14:52:22 +02:00
|
|
|
version = "1.0.0";
|
2019-01-28 15:25:18 +01:00
|
|
|
pname = "python-vagrant";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-03-31 14:52:22 +02:00
|
|
|
sha256 = "sha256-qP6TzPL/N+zJXsL0nqdKkabOc6TbShapjdJtOXz9CeU=";
|
2019-01-28 15:25:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# The tests try to connect to qemu
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python module that provides a thin wrapper around the vagrant command line executable";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/todddeluca/python-vagrant";
|
2019-01-28 15:25:18 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.pmiddend ];
|
|
|
|
};
|
|
|
|
}
|