about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-16 13:56:05 +0200
committerGitHub <noreply@github.com>2023-09-16 13:56:05 +0200
commit93dd304d02157a6e9a20bd57f87a4dbcaef00c9e (patch)
treef8c46a765fe6c516f2e7593d909f95eb29a5c879
parentfae75190d3bdd7703cbf2f06eabba90ccc80a4a7 (diff)
python310Packages.jsonpath-ng: adjust inputs
-rw-r--r--pkgs/development/python-modules/jsonpath-ng/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/jsonpath-ng/default.nix b/pkgs/development/python-modules/jsonpath-ng/default.nix
index 21ea81637d00e..edda6a341e327 100644
--- a/pkgs/development/python-modules/jsonpath-ng/default.nix
+++ b/pkgs/development/python-modules/jsonpath-ng/default.nix
@@ -4,12 +4,13 @@
 , ply
 , pytestCheckHook
 , pythonOlder
+, setuptools
 }:
 
 buildPythonPackage rec {
   pname = "jsonpath-ng";
   version = "1.6.0";
-  format = "pyproject";
+  format = "setuptools";
 
   disabled = pythonOlder "3.7";
 
@@ -22,6 +23,7 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [
     ply
+    setuptools
   ];
 
   nativeCheckInputs = [