python3Packages.comet-ml: init at 3.53.0
This commit is contained in:
committed by
Silvan Mosberger
parent
b20f397ed0
commit
30068508fd
@@ -0,0 +1,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.53.0";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "comet_ml";
|
||||
inherit version;
|
||||
hash = "sha256-KYMe6lDNj5nyXaB0hsk2STwGATkAuRwr8SSzlz3W4tA=";
|
||||
};
|
||||
|
||||
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";
|
||||
};
|
||||
}
|
||||
@@ -2871,6 +2871,8 @@ self: super: with self; {
|
||||
|
||||
colout = callPackage ../development/python-modules/colout { };
|
||||
|
||||
comet-ml = callPackage ../development/python-modules/comet-ml { };
|
||||
|
||||
cometblue-lite = callPackage ../development/python-modules/cometblue-lite { };
|
||||
|
||||
comicapi = callPackage ../development/python-modules/comicapi { };
|
||||
|
||||
Reference in New Issue
Block a user