Commit 1a60be55 authored by happysalada's avatar happysalada Committed by Yt
Browse files

python310Packages.tritonclient: init at 2.35.0

parent 6d8c23b2
Loading
Loading
Loading
Loading
+65 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };