python3Packages.gguf: 0.6.0 -> 0.9.1

This commit is contained in:
Yuxuan Shui
2024-08-21 10:13:46 +01:00
parent 5b6d2fb626
commit 035abb86ca
@@ -5,26 +5,26 @@
numpy,
poetry-core,
pythonOlder,
tqdm,
}:
buildPythonPackage rec {
pname = "gguf";
version = "0.6.0";
version = "0.9.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-suIuq6KhBsGtFIGGoUrZ8pxCk1Fob+nXzhbfOaBgfmU=";
hash = "sha256-9ecJh+FbGcVF9qn3UztAM/swYzDrHzxclf0osUw/0zs=";
};
dependencies = [
numpy
poetry-core
tqdm
];
doCheck = false;
meta = with lib; {
description = "Module for writing binary files in the GGUF format";
homepage = "https://ggml.ai/";