1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 version = "0.5.15"; 5 pname = "python-vagrant"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1ikrh6canhcxg5y7pzmkcnnydikppv7s6sm9prfx90nk0ac8m6mg"; 10 }; 11 12 # The tests try to connect to qemu 13 doCheck = false; 14 15 meta = { 16 description = "Python module that provides a thin wrapper around the vagrant command line executable"; 17 homepage = "https://github.com/todddeluca/python-vagrant"; 18 license = lib.licenses.mit; 19 maintainers = [ lib.maintainers.pmiddend ]; 20 }; 21}