python3Packages.python-vagrant: use pyproject format
This commit is contained in:
parent
aacb9ea1fc
commit
a6b4d66b77
@ -3,6 +3,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "1.0.0";
|
version = "1.0.0";
|
||||||
pname = "python-vagrant";
|
pname = "python-vagrant";
|
||||||
|
format = "pyproject";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -12,6 +13,10 @@ buildPythonPackage rec {
|
|||||||
# The tests try to connect to qemu
|
# The tests try to connect to qemu
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"vagrant"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python module that provides a thin wrapper around the vagrant command line executable";
|
description = "Python module that provides a thin wrapper around the vagrant command line executable";
|
||||||
homepage = "https://github.com/todddeluca/python-vagrant";
|
homepage = "https://github.com/todddeluca/python-vagrant";
|
||||||
|
Loading…
Reference in New Issue
Block a user