about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-05-11 10:52:07 +0200
committerGitHub <noreply@github.com>2024-05-11 10:52:07 +0200
commit5c43f0779638647d3b249664121332aa6bd2fb2f (patch)
tree30b1ec448be1bcdbd8fc9446d7454c7fb167c9c5 /pkgs
parent0ff60c84f7e3ef0b016a61a122cd04b04d427103 (diff)
parent00e5bca5a44d728402fa5efa3696e14c4aabc52a (diff)
Merge pull request #310739 from annaleeleaves/wheel-inspect-fix
python312Packages.wheel-inspect: add setuptools to checkInputs; unbreak
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/wheel-inspect/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wheel-inspect/default.nix b/pkgs/development/python-modules/wheel-inspect/default.nix
index bf2ff4ece67b0..30c8b30a095c0 100644
--- a/pkgs/development/python-modules/wheel-inspect/default.nix
+++ b/pkgs/development/python-modules/wheel-inspect/default.nix
@@ -11,6 +11,7 @@
 , pytestCheckHook
 , pythonOlder
 , readme-renderer
+, setuptools
 , wheel-filename
 }:
 
@@ -53,10 +54,14 @@ buildPythonPackage rec {
   ];
 
   nativeCheckInputs = [
-    jsonschema
     pytestCheckHook
   ];
 
+  checkInputs = [
+    setuptools
+    jsonschema
+  ];
+
   pythonImportsCheck = [
     "wheel_inspect"
   ];