Files
nixpkgs/pkgs/development/python-modules/clip/default.nix
2026-06-07 22:20:24 +07:00

46 lines
795 B
Nix

{
buildPythonPackage,
fetchFromGitHub,
ftfy,
lib,
regex,
setuptools,
torch,
torchvision,
tqdm,
}:
buildPythonPackage {
pname = "clip";
version = "unstable-2022-11-17";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "openai";
repo = "clip";
rev = "d50d76daa670286dd6cacf3bcd80b5e4823fc8e1";
hash = "sha256-GAitNBb5CzFVv2+Dky0VqSdrFIpKKtoAoyqeLoDaHO4=";
};
build-system = [ setuptools ];
dependencies = [
ftfy
regex
torch
torchvision
tqdm
];
pythonImportsCheck = [ "clip" ];
meta = {
description = "Contrastive Language-Image Pretraining";
homepage = "https://github.com/openai/CLIP";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ samuela ];
};
}