mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +00:00
python310Packages.molecule-plugins: init at 23.4.1
This commit is contained in:
parent
8377b96e12
commit
ca2198ddf9
39
pkgs/development/python-modules/molecule/plugins.nix
Normal file
39
pkgs/development/python-modules/molecule/plugins.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user