Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-vagrant / default.nix
blobdcf29a4662d9acb3880bcebe882c36f28d91485a
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , setuptools
5 , setuptools-scm
6 , wheel
7 }:
9 buildPythonPackage rec {
10   version = "1.1.0";
11   pname = "python-vagrant";
12   format = "pyproject";
14   src = fetchFromGitHub {
15     owner = "pycontribs";
16     repo = "python-vagrant";
17     rev = "refs/tags/v${version}";
18     hash = "sha256-apvYzH0IY6ZyUP/FiOVbGN3dXejgN7gn7Mq2tlEaTww=";
19   };
21   nativeBuildInputs = [
22     setuptools
23     setuptools-scm
24     wheel
25   ];
27   # The tests try to connect to qemu
28   doCheck = false;
30   pythonImportsCheck = [
31     "vagrant"
32   ];
34   meta = {
35     description = "Python module that provides a thin wrapper around the vagrant command line executable";
36     homepage = "https://github.com/todddeluca/python-vagrant";
37     license = lib.licenses.mit;
38     maintainers = [ lib.maintainers.pmiddend ];
39   };