python313Packages.jsonschema-path: 0.3.3 -> 0.3.4

Diff: https://github.com/p1c2u/jsonschema-path/compare/refs/tags/0.3.3...0.3.4

Changelog: https://github.com/p1c2u/jsonschema-path/releases/tag/0.3.4
This commit is contained in:
Robert Schütz
2025-03-11 13:18:33 +01:00
committed by Martin Weinelt
parent 097d860716
commit fb98defc61
@@ -1,35 +1,28 @@
{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
poetry-core,
pathable,
pyyaml,
referencing,
pytest-cov-stub,
pytestCheckHook,
responses,
}:
buildPythonPackage rec {
pname = "jsonschema-path";
version = "0.3.3";
disabled = pythonOlder "3.8";
version = "0.3.4";
pyproject = true;
src = fetchFromGitHub {
owner = "p1c2u";
repo = "jsonschema-path";
tag = version;
hash = "sha256-oBzB6Ke19QDcMQm4MpnaS132/prrtnCekAXuPMloZx4=";
hash = "sha256-rCepDnVAOEsokKjWCuqDYbGIq6/wn4rsQRx5dXTUsYo=";
};
postPatch = ''
sed -i '/--cov/d' pyproject.toml
'';
build-system = [ poetry-core ];
pythonRelaxDeps = [ "referencing" ];
@@ -43,6 +36,7 @@ buildPythonPackage rec {
pythonImportsCheck = [ "jsonschema_path" ];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
responses
];