python3Packages.python-vagrant: use pyproject format

This commit is contained in:
Martin Weinelt 2022-04-20 02:19:21 +02:00
parent aacb9ea1fc
commit a6b4d66b77
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,6 +3,7 @@
buildPythonPackage rec {
version = "1.0.0";
pname = "python-vagrant";
format = "pyproject";
src = fetchPypi {
inherit pname version;
@ -12,6 +13,10 @@ buildPythonPackage rec {
# The tests try to connect to qemu
doCheck = false;
pythonImportsCheck = [
"vagrant"
];
meta = {
description = "Python module that provides a thin wrapper around the vagrant command line executable";
homepage = "https://github.com/todddeluca/python-vagrant";