mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
33 lines
750 B
Nix
33 lines
750 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
comfyui,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "comfyui-workflow-templates-media-assets-01";
|
|
version = "0.1.30";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "comfyui_workflow_templates_media_assets_01";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-5N6pN46RdJkKMVqCC/I6Zu0o7YS90V9y8pu10IryoMY=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "comfyui_workflow_templates_media_assets_01" ];
|
|
|
|
meta = {
|
|
description = "Media assets bundle 01 for ComfyUI workflow templates";
|
|
homepage = "https://github.com/Comfy-Org/workflow_templates";
|
|
license = lib.licenses.mit;
|
|
inherit (comfyui.meta) maintainers;
|
|
};
|
|
})
|