tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.bentoml: 1.3.7 -> 1.3.20
Martin Weinelt
1 year ago
269fa980
38e4165f
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
bentoml
default.nix
+8
-8
pkgs/development/python-modules/bentoml/default.nix
···
74
74
}:
75
75
76
76
let
77
77
-
version = "1.3.7";
77
77
+
version = "1.3.20";
78
78
aws = [ fs-s3fs ];
79
79
grpc = [
80
80
grpcio
···
118
118
tritonclient.optional-dependencies.http ++ tritonclient.optional-dependencies.grpc
119
119
);
120
120
};
121
121
-
in
122
122
-
buildPythonPackage {
123
123
-
pname = "bentoml";
124
124
-
inherit version;
125
125
-
pyproject = true;
126
121
127
122
src = fetchFromGitHub {
128
123
owner = "bentoml";
129
124
repo = "BentoML";
130
125
tag = "v${version}";
131
131
-
hash = "sha256-98SVW7f/Yn+NMfS6UIicQcoatMSm4XSJzbuJ0S/p3sg=";
126
126
+
hash = "sha256-zc/JvnEEoV21EbBHhLBWvilidXHx1pxYsBYISFg16Us=";
132
127
};
128
128
+
in
129
129
+
buildPythonPackage {
130
130
+
pname = "bentoml";
131
131
+
inherit version src;
132
132
+
pyproject = true;
133
133
134
134
pythonRelaxDeps = [
135
135
"cattrs"
···
229
229
meta = with lib; {
230
230
description = "Build Production-Grade AI Applications";
231
231
homepage = "https://github.com/bentoml/BentoML";
232
232
-
changelog = "https://github.com/bentoml/BentoML/releases/tag/v${version}";
232
232
+
changelog = "https://github.com/bentoml/BentoML/releases/tag/${src.tag}";
233
233
license = licenses.asl20;
234
234
maintainers = with maintainers; [
235
235
happysalada