python3Packages.jsonpath-ng: 1.7.0 -> 1.8.0

https://github.com/h2non/jsonpath-ng/blob/v1.8.0/History.md
This commit is contained in:
Martin Weinelt
2026-07-12 23:38:18 +02:00
parent f90c896147
commit 9efe17c2ce

View File

@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
hypothesis,
ply,
pytestCheckHook,
setuptools,
@@ -9,7 +10,7 @@
buildPythonPackage rec {
pname = "jsonpath-ng";
version = "1.7.0";
version = "1.8.0";
format = "setuptools";
# TODO: typo; change to pyproject = true;
pypropject = true;
@@ -18,14 +19,17 @@ buildPythonPackage rec {
owner = "h2non";
repo = "jsonpath-ng";
tag = "v${version}";
hash = "sha256-sfIqEc5SsNQYxK+Ur00fFdVoC0ysOkHrx4Cq/3SpGHw=";
hash = "sha256-soCSMOHJpAM/tOaydvv8tGS/VewtSMBteDNipSPttI0=";
};
build-system = [ setuptools ];
dependencies = [ ply ];
nativeCheckInputs = [ pytestCheckHook ];
nativeCheckInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [ "jsonpath_ng" ];