Loading pkgs/development/python-modules/openllm-client/default.nix 0 → 100644 +58 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , bentoml , hatch-fancy-pypi-readme , hatch-vcs , hatchling , httpx , openllm-core , soundfile , transformers }: buildPythonPackage rec { inherit (openllm-core) src version; pname = "openllm-client"; format = "pyproject"; disabled = pythonOlder "3.8"; sourceRoot = "source/openllm-client"; nativeBuildInputs = [ hatch-fancy-pypi-readme hatch-vcs hatchling ]; propagatedBuildInputs = [ httpx openllm-core ]; passthru.optional-dependencies = { grpc = [ bentoml ] ++ bentoml.optional-dependencies.grpc; agents = [ transformers # diffusers soundfile ] ++ transformers.agents; full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents; }; # there is no tests doCheck = false; pythonImportsCheck = [ "openllm_client" ]; meta = with lib; { description = "Interacting with OpenLLM HTTP/gRPC server, or any BentoML server"; homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-client"; changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ natsukium ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4014,6 +4014,8 @@ self: super: with self; { inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL; }; openllm-client = callPackage ../development/python-modules/openllm-client { }; openllm-core = callPackage ../development/python-modules/openllm-core { }; openstep-plist = callPackage ../development/python-modules/openstep-plist { }; Loading Loading
pkgs/development/python-modules/openllm-client/default.nix 0 → 100644 +58 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , pythonOlder , bentoml , hatch-fancy-pypi-readme , hatch-vcs , hatchling , httpx , openllm-core , soundfile , transformers }: buildPythonPackage rec { inherit (openllm-core) src version; pname = "openllm-client"; format = "pyproject"; disabled = pythonOlder "3.8"; sourceRoot = "source/openllm-client"; nativeBuildInputs = [ hatch-fancy-pypi-readme hatch-vcs hatchling ]; propagatedBuildInputs = [ httpx openllm-core ]; passthru.optional-dependencies = { grpc = [ bentoml ] ++ bentoml.optional-dependencies.grpc; agents = [ transformers # diffusers soundfile ] ++ transformers.agents; full = passthru.optional-dependencies.grpc ++ passthru.optional-dependencies.agents; }; # there is no tests doCheck = false; pythonImportsCheck = [ "openllm_client" ]; meta = with lib; { description = "Interacting with OpenLLM HTTP/gRPC server, or any BentoML server"; homepage = "https://github.com/bentoml/OpenLLM/tree/main/openllm-client"; changelog = "https://github.com/bentoml/OpenLLM/blob/${src.rev}/CHANGELOG.md"; license = licenses.asl20; maintainers = with maintainers; [ natsukium ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4014,6 +4014,8 @@ self: super: with self; { inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL; }; openllm-client = callPackage ../development/python-modules/openllm-client { }; openllm-core = callPackage ../development/python-modules/openllm-core { }; openstep-plist = callPackage ../development/python-modules/openstep-plist { }; Loading