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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
lib,
buildPythonPackage,
fetchPypi,
dulwich,
everett,
importlib-metadata,
jsonschema,
numpy,
psutil,
python-box,
requests,
requests-toolbelt,
rich,
semantic-version,
sentry-sdk,
setuptools,
simplejson,
urllib3,
wrapt,
wurlitzer,
}:
buildPythonPackage rec {
pname = "comet-ml";
version = "3.55.0";
src = fetchPypi {
pname = "comet_ml";
inherit version;
hash = "sha256-bNfh6tVpsU2LrSLcAKy5lXLgd4lbo3/6dzzMB4+Eh08=";
};
pyproject = true;
build-system = [
setuptools
];
dependencies = [
dulwich
everett
importlib-metadata
jsonschema
numpy
psutil
python-box
requests
requests-toolbelt
rich
semantic-version
sentry-sdk
simplejson
urllib3
wrapt
wurlitzer
];
pythonRelaxDeps = [
"everett"
"python-box"
];
pythonImportsCheck = [ "comet_ml" ];
meta = {
description = "Platform designed to help machine learning teams track, compare, explain, and optimize their models";
homepage = "https://www.comet.com/site/";
changelog = "https://www.comet.com/docs/v2/api-and-sdk/python-sdk/releases/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jherland ];
mainProgram = "comet";
};
}
|