10 buildPythonPackage rec {
11 pname = "jsonpath-ng";
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-0ErTGxGlMn/k2KMwRV26WJpx85yJUfn6Hgp5pU4RZA4=";
24 propagatedBuildInputs = [
34 # Exclude tests that require oslotest
35 "tests/test_jsonpath_rw_ext.py"
38 pythonImportsCheck = [
43 description = "JSONPath implementation";
44 mainProgram = "jsonpath_ng";
45 homepage = "https://github.com/h2non/jsonpath-ng";
46 changelog = "https://github.com/h2non/jsonpath-ng/blob/v${version}/History.md";
47 license = with licenses; [ asl20 ];
48 maintainers = with maintainers; [ fab ];