python3Packages.pluginlib: init at 0.10.0 (#447018)

This commit is contained in:
misuzu
2025-10-13 18:21:42 +00:00
committed by GitHub
2 changed files with 47 additions and 0 deletions
@@ -0,0 +1,45 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pluginlib";
version = "0.10.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Rockhopper-Technologies";
repo = "pluginlib";
tag = "${version}";
hash = "sha256-mt3VE8iJPCmbws8bAdYMK9to446z8FQtsMZOlkLVUIU=";
};
build-system = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"pluginlib"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Framework for creating and importing plugins in Python";
homepage = "https://github.com/Rockhopper-Technologies/pluginlib";
changelog = "https://github.com/Rockhopper-Technologies/pluginlib/releases/tag/${version}";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [
jpds
];
};
}
+2
View File
@@ -11984,6 +11984,8 @@ self: super: with self; {
plugincode = callPackage ../development/python-modules/plugincode { };
pluginlib = callPackage ../development/python-modules/pluginlib { };
plugnplay = callPackage ../development/python-modules/plugnplay { };
plugp100 = callPackage ../development/python-modules/plugp100 { };