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