1{ lib
2, buildPythonPackage
3, fetchPypi
4, setuptools
5}:
6
7buildPythonPackage rec {
8 version = "1.0.0";
9 pname = "python-vagrant";
10 format = "pyproject";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "sha256-qP6TzPL/N+zJXsL0nqdKkabOc6TbShapjdJtOXz9CeU=";
15 };
16
17 nativeBuildInputs = [
18 setuptools
19 ];
20
21 # The tests try to connect to qemu
22 doCheck = false;
23
24 pythonImportsCheck = [
25 "vagrant"
26 ];
27
28 meta = {
29 description = "Python module that provides a thin wrapper around the vagrant command line executable";
30 homepage = "https://github.com/todddeluca/python-vagrant";
31 license = lib.licenses.mit;
32 maintainers = [ lib.maintainers.pmiddend ];
33 };
34}