Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

73 lines
1.2 KiB
Nix

{
lib,
accelerate,
buildPythonPackage,
clean-fid,
clip-anytorch,
dctorch,
einops,
fetchFromGitHub,
jsonmerge,
kornia,
pillow,
pythonOlder,
rotary-embedding-torch,
safetensors,
scikit-image,
scipy,
torch,
torchdiffeq,
torchsde,
torchvision,
tqdm,
wandb,
}:
buildPythonPackage rec {
pname = "k-diffusion";
version = "0.1.1.post1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "crowsonkb";
repo = "k-diffusion";
tag = "v${version}";
hash = "sha256-x/UHzobQv5ov0luUHqC8OA5YbtF+aWL39/SQtzTm0RM=";
};
propagatedBuildInputs = [
accelerate
clean-fid
clip-anytorch
dctorch
einops
jsonmerge
kornia
pillow
rotary-embedding-torch
scikit-image
scipy
safetensors
torch
torchdiffeq
torchsde
torchvision
tqdm
wandb
];
pythonImportsCheck = [ "k_diffusion" ];
# no tests
doCheck = false;
meta = with lib; {
description = "Karras et al. (2022) diffusion models for PyTorch";
homepage = "https://github.com/crowsonkb/k-diffusion";
license = licenses.mit;
teams = [ teams.tts ];
};
}