Files
nixpkgs/pkgs/development/python-modules/cometx/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
comet-ml,
ipython,
matplotlib,
numpy,
requests,
scipy,
selenium,
urllib3,
zipfile2,
tqdm,
}:
buildPythonPackage rec {
pname = "cometx";
version = "2.6.0";
pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub {
owner = "comet-ml";
repo = "cometx";
tag = version;
hash = "sha256-zlSk3DlrkvPOPCe6gtiXvn65NCw/y5BxCiVmC0GzvFg=";
};
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";
};
}