Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
856 B
Nix
44 lines
856 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools-scm,
|
|
python-vagrant,
|
|
docker,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "molecule-plugins";
|
|
version = "23.5.3";
|
|
format = "pyproject";
|
|
|
|
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 = with lib; {
|
|
description = "Collection on molecule plugins";
|
|
homepage = "https://github.com/ansible-community/molecule-plugins";
|
|
maintainers = with maintainers; [ dawidd6 ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|