1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-gguf: Update to 0.16.0.

* gnu/packages/machine-learning.scm (python-gguf): Update to 0.16.0.
Change origin to git repository.  Run tests.

Change-Id: I1c1b5f5956e3acb380b56816d180f53243b741fa
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
Morgan Smith
2025-04-07 19:19:38 -04:00
committed by Danny Milosavljevic
parent f22424d4fd
commit 55d9b6ff11

View File

@@ -7084,24 +7084,35 @@ performance library of basic building blocks for deep learning applications.")
(base32 "1zyw5rd8x346bb7gac9a7x3saviw3zvp6aqz2z1l9sv163vmjfz6"))))))
(define-public python-gguf
;; They didn't tag the commit
(let ((commit "69050a11be0ae3e01329f11371ecb6850bdaded5"))
(package
(name "python-gguf")
(version "0.6.0")
(version "0.16.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gguf" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/ggml-org/llama.cpp")
(commit commit)))
(file-name (git-file-name name commit))
(sha256
(base32 "0rbyc2h3kpqnrvbyjvv8a69l577jv55a31l12jnw21m1lamjxqmj"))))
(base32 "1563mbrjykwpsbhghhzi4h1qv9qy74gq5vq4xhs58zk0jp20c7zz"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #false))
(inputs (list poetry python-pytest))
(propagated-inputs (list python-numpy))
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'chdir
(lambda _
(chdir "gguf-py"))))))
(propagated-inputs (list python-numpy python-pyyaml python-sentencepiece
python-tqdm))
(native-inputs (list python-poetry-core python-pytest))
(home-page "https://ggml.ai")
(synopsis "Read and write ML models in GGUF for GGML")
(description "A Python library for reading and writing GGUF & GGML format ML models.")
(license license:expat)))
(license license:expat))))
(define-public python-gymnasium
(package