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
59
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
comet-ml,
ipython,
matplotlib,
numpy,
requests,
scipy,
selenium,
urllib3,
zipfile2,
tqdm,
}:
buildPythonPackage rec {
pname = "cometx";
version = "3.1.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "comet-ml";
repo = "cometx";
tag = version;
hash = "sha256-7rxEJNmJsFExfvYCuO/JOgj7yRFBjceE1bhRL1hFoPU=";
};
dependencies = [
comet-ml
ipython
matplotlib
numpy
requests
scipy
selenium
urllib3
zipfile2
tqdm
];
# WARNING: Running the tests will create experiments, models, assets, etc.
# on your Comet account.
doCheck = false;
pythonImportsCheck = [ "cometx" ];
meta = {
description = "Open source extensions for the Comet SDK";
homepage = "https://github.com/comet-ml/comet-sdk-extensions/";
changelog = "https://github.com/comet-ml/cometx/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jherland ];
mainProgram = "cometx";
};
}
|