python3Packages.comet-ml: 3.55.0 -> 3.58.1 (#532236)

This commit is contained in:
Gaétan Lepage
2026-06-17 07:57:40 +00:00
committed by GitHub
2 changed files with 18 additions and 17 deletions
@@ -17,21 +17,24 @@
setuptools,
simplejson,
urllib3,
versionCheckHook,
wrapt,
wurlitzer,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "comet-ml";
version = "3.55.0";
version = "3.58.1";
pyproject = true;
__structuredAttrs = true;
# No GitHub repository
src = fetchPypi {
pname = "comet_ml";
inherit version;
hash = "sha256-bNfh6tVpsU2LrSLcAKy5lXLgd4lbo3/6dzzMB4+Eh08=";
inherit (finalAttrs) version;
hash = "sha256-6DHmsd7CcFd1QU06G09CVMeVuHGAtn8Rxsr1++epdeU=";
};
pyproject = true;
build-system = [
setuptools
];
@@ -62,6 +65,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "comet_ml" ];
nativeCheckInputs = [
versionCheckHook
# Skip pytestCheckHook, as Python tests require a lot of additional dependencies to run.
];
meta = {
description = "Platform designed to help machine learning teams track, compare, explain, and optimize their models";
homepage = "https://www.comet.com/site/";
@@ -70,4 +78,4 @@ buildPythonPackage rec {
maintainers = with lib.maintainers; [ jherland ];
mainProgram = "comet";
};
}
})
@@ -54,7 +54,7 @@
}:
buildPythonPackage.override { inherit (torch) stdenv; } (finalAttrs: {
pname = "executorch";
version = "1.2.0";
version = "1.3.1";
pyproject = true;
__structuredAttrs = true;
@@ -68,7 +68,7 @@ buildPythonPackage.override { inherit (torch) stdenv; } (finalAttrs: {
name = "executorch";
fetchSubmodules = true;
hash = "sha256-Rkw6+keOygQaf6iOCpGoW9JgXiCimgx8gsxLEH3bxME=";
hash = "sha256-UyMPY+qYTHYZDeftj4YVqzO2ibTswzd+HWW5JeXHW0Q=";
};
postPatch =
@@ -76,8 +76,8 @@ buildPythonPackage.override { inherit (torch) stdenv; } (finalAttrs: {
''
substituteInPlace exir/_serialize/_flatbuffer.py \
--replace-fail \
'flatc_path = "flatc"' \
'flatc_path = "${lib.getExe pkgs.flatbuffers}"'
'_flatc_cached_path = os.getenv("FLATC_EXECUTABLE", "flatc")' \
'_flatc_cached_path = os.getenv("FLATC_EXECUTABLE", "${lib.getExe pkgs.flatbuffers}")'
''
# Relax build-system dependencies
+ ''
@@ -102,13 +102,6 @@ buildPythonPackage.override { inherit (torch) stdenv; } (finalAttrs: {
sed -i "1i #include <cstdint>" backends/apple/coreml/runtime/inmemoryfs/memory_buffer.hpp
sed -i "1i #include <cstdint>" extension/llm/tokenizers/third-party/sentencepiece/src/sentencepiece_processor.h
''
# AssertionError: '1.3.0' != '0.1.0'
+ ''
substituteInPlace extension/llm/tokenizers/test/test_python_bindings.py \
--replace-fail \
'self.assertEqual(pytorch_tokenizers.__version__, "0.1.0")' \
'self.assertEqual(pytorch_tokenizers.__version__, "${pytorch-tokenizers.version}")'
'';
env = {