Merge pull request #241313 from dawidd6/molecule

molecule: init at 5.1.0, python310Packages.molecule-plugins: init at 23.4.1
This commit is contained in:
OTABI Tomoya 2023-08-24 21:54:44 +09:00 committed by GitHub
commit a2ef572ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 118 additions and 0 deletions

View File

@ -3926,6 +3926,12 @@
githubId = 11422515; githubId = 11422515;
name = "David Sánchez"; name = "David Sánchez";
}; };
dawidd6 = {
email = "dawidd0811@gmail.com";
github = "dawidd6";
githubId = 9713907;
name = "Dawid Dziurla";
};
dawidsowa = { dawidsowa = {
email = "dawid_sowa@posteo.net"; email = "dawid_sowa@posteo.net";
github = "dawidsowa"; github = "dawidsowa";

View File

@ -0,0 +1,56 @@
{ lib
, buildPythonPackage
, fetchPypi
, ansible-compat
, ansible-core
, click-help-colors
, cookiecutter
, enrich
, jsonschema
, withPlugins ? true, molecule-plugins
, packaging
, pluggy
, rich
, setuptools
, yamllint
}:
buildPythonPackage rec {
pname = "molecule";
version = "5.1.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-+nr4n9+TF1OcPsqZyx5edSLXpX4LZ/W2mORCdvmNnYI=";
};
propagatedBuildInputs = [
ansible-compat
ansible-core
click-help-colors
cookiecutter
enrich
jsonschema
packaging
pluggy
rich
yamllint
] ++ lib.optional withPlugins molecule-plugins;
nativeBuildInputs = [
setuptools
];
pythonImportsCheck = [ "molecule" ];
# tests can't be easily run without installing things from ansible-galaxy
doCheck = false;
meta = with lib; {
description = "Molecule aids in the development and testing of Ansible roles";
homepage = "https://github.com/ansible-community/molecule";
maintainers = with maintainers; [ dawidd6 ];
license = licenses.mit;
};
}

View File

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, setuptools-scm
, python-vagrant
, docker
}:
buildPythonPackage rec {
pname = "molecule-plugins";
version = "23.4.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-NMR+4sEcNbowyoTqaEwe4Wac9+WNIZesnb/L9C0KG3s=";
};
# reverse the dependency
pythonRemoveDeps = [
"molecule"
];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools-scm
];
passthru.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;
};
}

View File

@ -10782,6 +10782,8 @@ with pkgs;
modsecurity-crs = callPackage ../tools/security/modsecurity-crs { }; modsecurity-crs = callPackage ../tools/security/modsecurity-crs { };
molecule = with python3Packages; toPythonApplication molecule;
molly-guard = callPackage ../os-specific/linux/molly-guard { }; molly-guard = callPackage ../os-specific/linux/molly-guard { };
molotov = callPackage ../applications/video/molotov { }; molotov = callPackage ../applications/video/molotov { };

View File

@ -6694,6 +6694,10 @@ self: super: with self; {
mohawk = callPackage ../development/python-modules/mohawk { }; mohawk = callPackage ../development/python-modules/mohawk { };
molecule = callPackage ../development/python-modules/molecule { };
molecule-plugins = callPackage ../development/python-modules/molecule/plugins.nix { };
monai = callPackage ../development/python-modules/monai { }; monai = callPackage ../development/python-modules/monai { };
monai-deploy = callPackage ../development/python-modules/monai-deploy { }; monai-deploy = callPackage ../development/python-modules/monai-deploy { };