1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatchling,
# dependencies
attrs,
boto3,
cloudpickle,
docker,
fastapi,
google-pasta,
importlib-metadata,
jsonschema,
numpy,
omegaconf,
packaging,
pandas,
pathos,
platformdirs,
protobuf,
psutil,
pyyaml,
requests,
sagemaker-core,
schema,
smdebug-rulesconfig,
tblib,
tqdm,
urllib3,
uvicorn,
# optional-dependencies
scipy,
accelerate,
}:
buildPythonPackage rec {
pname = "sagemaker";
version = "2.243.0";
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "sagemaker-python-sdk";
tag = "v${version}";
hash = "sha256-Os26VMK/kR23plt+wq8kV3K+17PfP5XuBy7MIz9PQ6s=";
};
build-system = [
hatchling
];
pythonRelaxDeps = [
"attrs"
"boto3"
"cloudpickle"
"importlib-metadata"
"numpy"
"omegaconf"
"protobuf"
];
dependencies = [
attrs
boto3
cloudpickle
docker
fastapi
google-pasta
importlib-metadata
jsonschema
numpy
omegaconf
packaging
pandas
pathos
platformdirs
protobuf
psutil
pyyaml
requests
sagemaker-core
schema
smdebug-rulesconfig
tblib
tqdm
urllib3
uvicorn
];
doCheck = false; # many test dependencies are not available in nixpkgs
pythonImportsCheck = [
"sagemaker"
"sagemaker.lineage.visualizer"
];
optional-dependencies = {
local = [
urllib3
docker
pyyaml
];
scipy = [ scipy ];
huggingface = [ accelerate ];
# feature-processor = [ pyspark sagemaker-feature-store-pyspark ]; # not available in nixpkgs
};
meta = {
description = "Library for training and deploying machine learning models on Amazon SageMaker";
homepage = "https://github.com/aws/sagemaker-python-sdk/";
changelog = "https://github.com/aws/sagemaker-python-sdk/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ nequissimus ];
};
}
|