ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-vagrant / default.nix
blobb8ae4eba788c2155a24fca0321fbd1d99b8508c3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   version = "1.0.0";
9   pname = "python-vagrant";
10   format = "pyproject";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "sha256-qP6TzPL/N+zJXsL0nqdKkabOc6TbShapjdJtOXz9CeU=";
15   };
17   nativeBuildInputs = [
18     setuptools
19   ];
21   # The tests try to connect to qemu
22   doCheck = false;
24   pythonImportsCheck = [
25     "vagrant"
26   ];
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   };