mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 02:05:02 +00:00
python3Packages.comfyui-embedded-docs: init at 0.5.9
This commit is contained in:
committed by
Sandro Jäckel
parent
60501c2470
commit
83ce262299
@@ -0,0 +1,33 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
comfyui,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "comfyui-embedded-docs";
|
||||
version = "0.5.9";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "comfyui_embedded_docs";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-uz83lj91nLsqT4C/nHZdr1pfKI18FaFiU/dI2Dx9gZk=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
# Package only ships static Markdown documentation; no tests.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "comfyui_embedded_docs" ];
|
||||
|
||||
meta = {
|
||||
description = "Embedded node documentation for ComfyUI";
|
||||
homepage = "https://github.com/Comfy-Org/embedded-docs";
|
||||
license = lib.licenses.gpl3Only;
|
||||
inherit (comfyui.meta) maintainers;
|
||||
};
|
||||
})
|
||||
@@ -3463,6 +3463,8 @@ self: super: with self; {
|
||||
|
||||
comfy-kitchen = callPackage ../development/python-modules/comfy-kitchen { };
|
||||
|
||||
comfyui-embedded-docs = callPackage ../development/python-modules/comfyui-embedded-docs { };
|
||||
|
||||
comicapi = callPackage ../development/python-modules/comicapi { };
|
||||
|
||||
comicon = callPackage ../development/python-modules/comicon { };
|
||||
|
||||
Reference in New Issue
Block a user