10 buildPythonPackage rec {
11 pname = "jsonpath-ng";
14 src = fetchFromGitHub {
18 sha256 = "1cxjwhx0nj85a3awnl7j6afnk07awzv45qfwxl5jqbbc9cxh5bd6";
21 propagatedBuildInputs = [
27 checkInputs = [ pytestCheckHook ];
30 # Exclude tests that require oslotest
31 "tests/test_jsonpath_rw_ext.py"
34 pythonImportsCheck = [ "jsonpath_ng" ];
37 description = "JSONPath implementation for Python";
38 homepage = "https://github.com/h2non/jsonpath-ng";
39 license = with licenses; [ asl20 ];
40 maintainers = with maintainers; [ fab ];