stuffs
This commit is contained in:
24
packages/python/comfy-aimdo/default.nix
Normal file
24
packages/python/comfy-aimdo/default.nix
Normal file
@@ -0,0 +1,24 @@
|
||||
{ python3Packages, fetchFromGitHub, lib, ... }:
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "comfy-aimdo";
|
||||
version = "0.1.7";
|
||||
format = "pyproject";
|
||||
# Comfy-Org/comfy-aimdo/releases/tag/v0.1.7
|
||||
src = fetchFromGitHub {
|
||||
owner = "Comfy-Org";
|
||||
repo = "comfy-aimdo";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-RNORTKtnTHZ4lcEx5gM3jSr+ZffrV8cd+x74NeRhlsM=";
|
||||
};
|
||||
|
||||
buildInputs = with python3Packages; [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
nativeBuildInputs = with python3Packages; [
|
||||
build
|
||||
wheel
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
}
|
||||
12
packages/python/comfy-kitchen/default.nix
Normal file
12
packages/python/comfy-kitchen/default.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ python3Packages, fetchurl, lib, ... }:
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "comfy-kitchen";
|
||||
version = "0.2.7";
|
||||
format = "wheel";
|
||||
# https://files.pythonhosted.org/packages/f8/65/d483613734d0b9753bd9bfa297ff334cb2c7766e82306099db6b259b4e2c/comfy_kitchen-0.2.7-py3-none-any.whl
|
||||
src = fetchurl {
|
||||
url = "https://files.pythonhosted.org/packages/f8/65/d483613734d0b9753bd9bfa297ff334cb2c7766e82306099db6b259b4e2c/comfy_kitchen-0.2.7-py3-none-any.whl";
|
||||
sha256 = "sha256-+PqlebadMx0vHqwJ6WqVWGwqa5WKVLwZ5/HBp3hS3TY=";
|
||||
};
|
||||
doCheck = false;
|
||||
}
|
||||
Reference in New Issue
Block a user