Merge pull request #333969 from r-ryantm/auto-update/python312Packages.json-repair

python312Packages.json-repair: 0.27.0 -> 0.27.2
This commit is contained in:
Fabian Affolter 2024-08-13 08:30:56 +02:00 committed by GitHub
commit abbe43f6b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,14 +8,14 @@
buildPythonPackage rec {
pname = "json-repair";
version = "0.27.0";
version = "0.27.2";
pyproject = true;
src = fetchFromGitHub {
owner = "mangiucugna";
repo = "json_repair";
rev = "refs/tags/${version}";
hash = "sha256-kaTwdS2zRt94pJko9AKEvszLR4z62u3ZrKlfXkJr5TQ=";
hash = "sha256-NYY76sIp4XirVifOPOs6iEzP93ERzNIHAvpgU4+fi24=";
};
build-system = [ setuptools ];
@ -27,8 +27,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "json_repair" ];
meta = with lib; {
description = "Module to repair invalid JSON, commonly used to parse the output of LLMs";
homepage = "https://github.com/mangiucugna/json_repair/";
description = "repair invalid JSON, commonly used to parse the output of LLMs";
changelog = "https://github.com/mangiucugna/json_repair/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ greg ];
};