Loading pkgs/development/python-modules/ggml-python/default.nix 0 → 100644 +102 −0 Original line number Diff line number Diff line { lib, stdenv, buildPythonPackage, fetchFromGitHub, replaceVars, # build-system cmake, ninja, scikit-build-core, # buildInputs ggml, # dependencies numpy, typing-extensions, # optional-dependencies accelerate, sentencepiece, torch, torchaudio, torchvision, transformers, cairosvg, mkdocs, mkdocs-material, mkdocstrings, pillow, # tests pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "ggml-python"; version = "0.0.37"; pyproject = true; src = fetchFromGitHub { owner = "abetlen"; repo = "ggml-python"; tag = "v${finalAttrs.version}"; # ggml-python expects an older version of ggml than pkgs.ggml's fetchSubmodules = true; hash = "sha256-QFpUGQ8m4c0SpHWnHhoyPdQkcywBToeLahDtG+JMcmA="; }; build-system = [ cmake ninja scikit-build-core ]; dontUseCmakeConfigure = true; buildInputs = [ ggml ]; dependencies = [ numpy typing-extensions ]; optional-dependencies = { convert = [ accelerate numpy sentencepiece torch torchaudio torchvision transformers ]; docs = [ cairosvg mkdocs mkdocs-material mkdocstrings pillow ]; }; pythonImportsCheck = [ "ggml" ]; preCheck = '' rm -rf ggml ''; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "Python bindings for ggml"; homepage = "https://github.com/abetlen/ggml-python"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }) pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6111,6 +6111,8 @@ self: super: with self; { gftools = callPackage ../development/python-modules/gftools { }; ggml-python = callPackage ../development/python-modules/ggml-python { }; gguf = callPackage ../development/python-modules/gguf { }; ghapi = callPackage ../development/python-modules/ghapi { }; Loading Loading
pkgs/development/python-modules/ggml-python/default.nix 0 → 100644 +102 −0 Original line number Diff line number Diff line { lib, stdenv, buildPythonPackage, fetchFromGitHub, replaceVars, # build-system cmake, ninja, scikit-build-core, # buildInputs ggml, # dependencies numpy, typing-extensions, # optional-dependencies accelerate, sentencepiece, torch, torchaudio, torchvision, transformers, cairosvg, mkdocs, mkdocs-material, mkdocstrings, pillow, # tests pytestCheckHook, }: buildPythonPackage (finalAttrs: { pname = "ggml-python"; version = "0.0.37"; pyproject = true; src = fetchFromGitHub { owner = "abetlen"; repo = "ggml-python"; tag = "v${finalAttrs.version}"; # ggml-python expects an older version of ggml than pkgs.ggml's fetchSubmodules = true; hash = "sha256-QFpUGQ8m4c0SpHWnHhoyPdQkcywBToeLahDtG+JMcmA="; }; build-system = [ cmake ninja scikit-build-core ]; dontUseCmakeConfigure = true; buildInputs = [ ggml ]; dependencies = [ numpy typing-extensions ]; optional-dependencies = { convert = [ accelerate numpy sentencepiece torch torchaudio torchvision transformers ]; docs = [ cairosvg mkdocs mkdocs-material mkdocstrings pillow ]; }; pythonImportsCheck = [ "ggml" ]; preCheck = '' rm -rf ggml ''; nativeCheckInputs = [ pytestCheckHook ]; meta = { description = "Python bindings for ggml"; homepage = "https://github.com/abetlen/ggml-python"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; })
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -6111,6 +6111,8 @@ self: super: with self; { gftools = callPackage ../development/python-modules/gftools { }; ggml-python = callPackage ../development/python-modules/ggml-python { }; gguf = callPackage ../development/python-modules/gguf { }; ghapi = callPackage ../development/python-modules/ghapi { }; Loading