python3Packages.python-vagrant: use pyproject format

main
Martin Weinelt 2 years ago
parent aacb9ea1fc
commit a6b4d66b77
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 5
      pkgs/development/python-modules/python-vagrant/default.nix

@ -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";

Loading…
Cancel
Save