blob: 1eac78e0647349159a053ef91bfad9381494445b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
ftfy,
packaging,
regex,
setuptools,
torch,
torchvision,
tqdm,
}:
buildPythonPackage rec {
pname = "clip-anytorch";
version = "2.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rom1504";
repo = "CLIP";
tag = version;
hash = "sha256-4A8R9aEiOWC05uhMQslhVSkQ4hyjs6VsqkFi76miodY=";
};
patches = [
# Import packaging to be compatible with setuptools==70.0.0, https://github.com/rom1504/CLIP/pull/10
(fetchpatch {
name = "setuptools-comp.patch";
url = "https://github.com/rom1504/CLIP/pull/10/commits/8137d899035d889623f6b0a0a0faae88c549dc50.patch";
hash = "sha256-CIcuDk4QH+0g8YEa6TbKGjIcKJQqFviymVH68sKmsyk=";
})
];
build-system = [ setuptools ];
dependencies = [
ftfy
regex
packaging
tqdm
torch
torchvision
];
pythonImportsCheck = [ "clip" ];
# All tests require network access
doCheck = false;
meta = {
description = "Contrastive Language-Image Pretraining";
homepage = "https://github.com/rom1504/CLIP";
license = lib.licenses.mit;
teams = [ lib.teams.tts ];
};
}
|