python3Packages.sagemaker-core: 1.0.73 -> 1.0.74 (#482593)

This commit is contained in:
Gaétan Lepage
2026-01-22 09:54:46 +00:00
committed by GitHub
@@ -26,16 +26,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sagemaker-core";
version = "1.0.73";
version = "1.0.74";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "sagemaker-core";
tag = "v${version}";
hash = "sha256-0pjz5XKiHe4ReDSeDeKpuT9hmv+XkM6ut3AbiWQDAlE=";
tag = "v${finalAttrs.version}";
hash = "sha256-1wQvytoIMeBpFZfP88CfHXy0sJdg3+D0P7vXcltNAWs=";
};
build-system = [
@@ -76,7 +76,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
disabledTestPaths = [
# Tries to import deprecated `sklearn`
@@ -89,8 +89,8 @@ buildPythonPackage rec {
meta = {
description = "Python object-oriented interface for interacting with Amazon SageMaker resources";
homepage = "https://github.com/aws/sagemaker-core";
changelog = "https://github.com/aws/sagemaker-core/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/aws/sagemaker-core/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
})