Files
Fabian Affolter b61328ad76 python3Packages.comfyui-workflow-templates: 0.11.41 -> 0.11.46
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:15 +02:00

51 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
comfyui,
comfyui-workflow-templates-core,
comfyui-workflow-templates-json,
comfyui-workflow-templates-media-api,
comfyui-workflow-templates-media-assets-01,
comfyui-workflow-templates-media-video,
comfyui-workflow-templates-media-image,
comfyui-workflow-templates-media-other,
}:
buildPythonPackage (finalAttrs: {
pname = "comfyui-workflow-templates";
version = "0.11.46";
pyproject = true;
src = fetchPypi {
pname = "comfyui_workflow_templates";
inherit (finalAttrs) version;
hash = "sha256-Z2yMIK2NYop7UsMTw9RE0dAQEwA3ixwiaRstO4vvrAY=";
};
build-system = [ setuptools ];
dependencies = [
comfyui-workflow-templates-core
comfyui-workflow-templates-json
comfyui-workflow-templates-media-api
comfyui-workflow-templates-media-assets-01
comfyui-workflow-templates-media-image
comfyui-workflow-templates-media-other
comfyui-workflow-templates-media-video
];
# Package only ships static workflow JSON assets; no tests.
doCheck = false;
pythonImportsCheck = [ "comfyui_workflow_templates" ];
meta = {
description = "Workflow templates for ComfyUI";
homepage = "https://github.com/Comfy-Org/workflow_templates";
license = lib.licenses.mit;
inherit (comfyui.meta) maintainers;
};
})