blob: 77c3774aea227acbf0f0fa7fd66109af3519b3e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
wheel,
}:
buildPythonPackage rec {
version = "1.1.0";
pname = "python-vagrant";
pyproject = true;
src = fetchFromGitHub {
owner = "pycontribs";
repo = "python-vagrant";
tag = "v${version}";
hash = "sha256-apvYzH0IY6ZyUP/FiOVbGN3dXejgN7gn7Mq2tlEaTww=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
# 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";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.pmiddend ];
};
}
|