python310Packages.molecule-plugins: init at 23.4.1

This commit is contained in:
Dawid Dziurla 2023-08-18 08:55:40 +02:00
parent 8377b96e12
commit ca2198ddf9
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, setuptools-scm
}:
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
];
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

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