14 buildPythonPackage rec {
15 pname = "jsonschema-path";
18 disabled = pythonOlder "3.8";
22 src = fetchFromGitHub {
24 repo = "jsonschema-path";
26 hash = "sha256-oBzB6Ke19QDcMQm4MpnaS132/prrtnCekAXuPMloZx4=";
30 sed -i '/--cov/d' pyproject.toml
33 build-system = [ poetry-core ];
35 propagatedBuildInputs = [
41 pythonImportsCheck = [ "jsonschema_path" ];
49 changelog = "https://github.com/p1c2u/jsonschema-path/releases/tag/${version}";
50 description = "JSONSchema Spec with object-oriented paths";
51 homepage = "https://github.com/p1c2u/jsonschema-path";
52 license = lib.licenses.asl20;
53 maintainers = with lib.maintainers; [ dotlambda ];