Commit d2ff0028 authored by Johan Herland's avatar Johan Herland Committed by Silvan Mosberger
Browse files

python3Packages.cometx: init at 2.6.0

parent 30068508
Loading
Loading
Loading
Loading
+59 −0
Original line number Diff line number Diff line
{
  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";
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -2875,6 +2875,8 @@ self: super: with self; {
  cometblue-lite = callPackage ../development/python-modules/cometblue-lite { };
  cometx = callPackage ../development/python-modules/cometx { };
  comicapi = callPackage ../development/python-modules/comicapi { };
  comicon = callPackage ../development/python-modules/comicon { };