Files
2026-05-24 02:22:56 +00:00

66 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
comet-ml,
ipython,
matplotlib,
numpy,
requests,
scipy,
selenium,
urllib3,
zipfile2,
tqdm,
reportlab,
streamlit,
boto3,
}:
buildPythonPackage rec {
pname = "cometx";
version = "3.6.6";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "comet-ml";
repo = "cometx";
tag = version;
hash = "sha256-Ub7Ucn/Xgaedymqjgiouy685PPr3tULAvJNLeqAgf78=";
};
dependencies = [
comet-ml
ipython
matplotlib
numpy
requests
scipy
selenium
urllib3
zipfile2
tqdm
reportlab
streamlit
boto3
];
# 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/${src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jherland ];
mainProgram = "cometx";
};
}