blob: ec41c07100695f59566c1348b6389944fbaf9fac (
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
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
python-vagrant,
docker,
}:
buildPythonPackage rec {
pname = "molecule-plugins";
version = "23.5.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-orFDfVMtc24/vG23pp7FM+IzSyEV/5JFoLJ3LtlzjSM=";
};
# reverse the dependency
pythonRemoveDeps = [ "molecule" ];
nativeBuildInputs = [
setuptools-scm
];
optional-dependencies = {
docker = [ docker ];
vagrant = [ python-vagrant ];
};
pythonImportsCheck = [ "molecule_plugins" ];
# Tests require container runtimes
doCheck = false;
meta = {
description = "Collection on molecule plugins";
homepage = "https://github.com/ansible-community/molecule-plugins";
maintainers = [ ];
license = lib.licenses.mit;
};
}
|