fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
fetchpatch,
|
|
einops,
|
|
emoji,
|
|
flax,
|
|
ftfy,
|
|
jax,
|
|
jaxlib,
|
|
pillow,
|
|
transformers,
|
|
unidecode,
|
|
wandb,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dalle-mini";
|
|
version = "0.1.5";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-k4XILjNNz0FPcAzwPEeqe5Lj24S2Y139uc9o/1IUS1c=";
|
|
};
|
|
|
|
# Fix incompatibility with the latest JAX versions
|
|
# See https://github.com/borisdayma/dalle-mini/pull/338
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/borisdayma/dalle-mini/pull/338/commits/22ffccf03f3e207731a481e3e42bdb564ceebb69.patch";
|
|
hash = "sha256-LIOyfeq/oVYukG+1rfy5PjjsJcjADCjn18x/hVmLkPY=";
|
|
})
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
einops
|
|
emoji
|
|
flax
|
|
ftfy
|
|
jax
|
|
jaxlib
|
|
pillow
|
|
transformers
|
|
unidecode
|
|
wandb
|
|
];
|
|
|
|
doCheck = false; # no upstream tests
|
|
|
|
pythonImportsCheck = [ "dalle_mini" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generate images from a text prompt";
|
|
homepage = "https://github.com/borisdayma/dalle-mini";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ r-burns ];
|
|
};
|
|
}
|