mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 18:24:53 +00:00
34 lines
772 B
Nix
34 lines
772 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
comfyui,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "comfyui-workflow-templates-json";
|
|
version = "0.1.50";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "comfyui_workflow_templates_json";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-C348ww+sejtpXeInN8Q7qxk81VUxbQBfHc/nmuEs9hk=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Package only ships static workflow JSON assets; no tests.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "comfyui_workflow_templates_json" ];
|
|
|
|
meta = {
|
|
description = "Workflow template JSON definitions for ComfyUI";
|
|
homepage = "https://github.com/Comfy-Org/workflow_templates";
|
|
license = lib.licenses.mit;
|
|
inherit (comfyui.meta) maintainers;
|
|
};
|
|
})
|