mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
python310Packages.tritonclient: init at 2.35.0
This commit is contained in:
parent
6d8c23b2fb
commit
1a60be55c3
65
pkgs/development/python-modules/tritonclient/default.nix
Normal file
65
pkgs/development/python-modules/tritonclient/default.nix
Normal file
@ -0,0 +1,65 @@
|
||||
{ lib
|
||||
, fetchPypi
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, python-rapidjson
|
||||
, numpy
|
||||
# optional dependencies
|
||||
, grpcio
|
||||
, packaging
|
||||
, aiohttp
|
||||
, geventhttpclient
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "tritonclient";
|
||||
version = "2.35.0";
|
||||
in
|
||||
buildPythonPackage {
|
||||
inherit pname version;
|
||||
format = "wheel";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
python = "py3";
|
||||
dist = "py3";
|
||||
format = "wheel";
|
||||
platform = "manylinux1_x86_64";
|
||||
hash = "sha256-JXVr+DWkM2g7CiU9STMcZyQJieXgNbKXlX/jqf/oam8=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python-rapidjson
|
||||
numpy
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"tritonclient"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
optional-dependencies = {
|
||||
http = [
|
||||
aiohttp
|
||||
geventhttpclient
|
||||
];
|
||||
grpc = [
|
||||
grpcio
|
||||
packaging
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Triton python client";
|
||||
homepage = "https://github.com/triton-inference-server/client";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ happysalada ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -12617,6 +12617,8 @@ self: super: with self; {
|
||||
|
||||
trio-websocket = callPackage ../development/python-modules/trio-websocket { };
|
||||
|
||||
tritonclient = callPackage ../development/python-modules/tritonclient { };
|
||||
|
||||
troposphere = callPackage ../development/python-modules/troposphere { };
|
||||
|
||||
trove-classifiers = callPackage ../development/python-modules/trove-classifiers { };
|
||||
|
Loading…
Reference in New Issue
Block a user