19 # optional-dependencies
26 buildPythonPackage rec {
27 pname = "sagemaker-core";
31 src = fetchFromGitHub {
33 repo = "sagemaker-core";
34 rev = "refs/tags/v${version}";
35 hash = "sha256-UloQJ5B10XXPbwsktVZzjcW7BLW8wCAw3wGmAkSl6wc=";
58 optional-dependencies = {
67 pythonImportsCheck = [
71 # Only a single test which fails with:
72 # ValueError: Must setup local AWS configuration with a region supported by SageMaker.
76 description = "Python SDK designed to provide an object-oriented interface for interacting with Amazon SageMaker resources";
77 homepage = "https://github.com/aws/sagemaker-core";
78 changelog = "https://github.com/aws/sagemaker-core/blob/${src.rev}/CHANGELOG.md";
79 license = lib.licenses.asl20;
80 maintainers = with lib.maintainers; [ GaetanLepage ];