mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
34 lines
775 B
Nix
34 lines
775 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
comfyui,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "comfyui-workflow-templates-media-api";
|
|
version = "0.3.84";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "comfyui_workflow_templates_media_api";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-a9XEluNo5eQN2H3+JfBm4k1X82AoiLo9+AATqI0GAlk=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
# Package only ships static workflow JSON assets; no tests.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "comfyui_workflow_templates_media_api" ];
|
|
|
|
meta = {
|
|
description = "API workflow templates for ComfyUI";
|
|
homepage = "https://github.com/Comfy-Org/workflow_templates";
|
|
license = lib.licenses.mit;
|
|
inherit (comfyui.meta) maintainers;
|
|
};
|
|
})
|