python3Packages.jsonpatch: migrate to pyproject

This commit is contained in:
Sigmanificient
2026-08-09 05:40:55 +02:00
parent 971945c53f
commit 5aacebcd9e

View File

@@ -4,12 +4,13 @@
fetchFromGitHub,
jsonpointer,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "jsonpatch";
version = "1.33";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "stefankoegl";
@@ -18,7 +19,9 @@ buildPythonPackage rec {
hash = "sha256-JHBB64LExzHQVoFF2xcsqGlNWX/YeEBa1M/TmfeQLWI=";
};
propagatedBuildInputs = [ jsonpointer ];
build-system = [ setuptools ];
dependencies = [ jsonpointer ];
nativeCheckInputs = [ pytestCheckHook ];