Files
Fabian Affolter 69e30b8505 python3Packages.comfyui-workflow-templates-core: 0.3.312 -> 0.3.320
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:15 +02:00

37 lines
962 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
comfyui,
}:
buildPythonPackage (finalAttrs: {
pname = "comfyui-workflow-templates-core";
version = "0.3.320";
pyproject = true;
src = fetchPypi {
pname = "comfyui_workflow_templates_core";
inherit (finalAttrs) version;
hash = "sha256-aoX4fHyr+HuIq0OL+IYu1KA3rYD4hltLFBxAPID+xsg=";
};
build-system = [ setuptools ];
# Upstream ships a `tests/` suite that resolves sibling packages by
# walking up to the source monorepo (`packages/{core,meta,media_*}/src`).
# That layout is not part of the published sdist, so the suite cannot
# run from a PyPI source checkout.
doCheck = false;
pythonImportsCheck = [ "comfyui_workflow_templates_core" ];
meta = {
description = "Core loader for ComfyUI workflow templates";
homepage = "https://github.com/Comfy-Org/workflow_templates";
license = lib.licenses.mit;
inherit (comfyui.meta) maintainers;
};
})