14 buildPythonPackage rec {
15 pname = "jsonschema-path";
18 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
24 repo = "jsonschema-path";
26 hash = "sha256-HC0yfACKFIQEQoIa8/FUKyV8YS8TQ0BY7i3n9xCdKz8=";
30 sed -i '/--cov/d' pyproject.toml
42 propagatedBuildInputs = [
48 pythonImportsCheck = [ "jsonschema_path" ];
56 description = "JSONSchema Spec with object-oriented paths";
57 homepage = "https://github.com/p1c2u/jsonschema-path";
58 license = lib.licenses.asl20;
59 maintainers = with lib.maintainers; [ dotlambda ];