mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 10:14:48 +00:00
37 lines
962 B
Nix
37 lines
962 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
comfyui,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "comfyui-workflow-templates-core";
|
|
version = "0.3.315";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "comfyui_workflow_templates_core";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-/klBIRx7cS8OiKeOQEQY+gCg6WYyj2ehwX7fZH1R7A4=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
})
|