about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wheel-inspect/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/wheel-inspect/default.nix')
-rw-r--r--pkgs/development/python-modules/wheel-inspect/default.nix40
1 files changed, 21 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/wheel-inspect/default.nix b/pkgs/development/python-modules/wheel-inspect/default.nix
index bf2ff4ece67b0..683cec66d3a5b 100644
--- a/pkgs/development/python-modules/wheel-inspect/default.nix
+++ b/pkgs/development/python-modules/wheel-inspect/default.nix
@@ -1,17 +1,19 @@
-{ lib
-, attrs
-, buildPythonPackage
-, entry-points-txt
-, fetchFromGitHub
-, hatchling
-, headerparser
-, jsonschema
-, pythonRelaxDepsHook
-, packaging
-, pytestCheckHook
-, pythonOlder
-, readme-renderer
-, wheel-filename
+{
+  lib,
+  attrs,
+  buildPythonPackage,
+  entry-points-txt,
+  fetchFromGitHub,
+  hatchling,
+  headerparser,
+  jsonschema,
+  pythonRelaxDepsHook,
+  packaging,
+  pytestCheckHook,
+  pythonOlder,
+  readme-renderer,
+  setuptools,
+  wheel-filename,
 }:
 
 buildPythonPackage rec {
@@ -52,14 +54,14 @@ buildPythonPackage rec {
     wheel-filename
   ];
 
-  nativeCheckInputs = [
+  nativeCheckInputs = [ pytestCheckHook ];
+
+  checkInputs = [
+    setuptools
     jsonschema
-    pytestCheckHook
   ];
 
-  pythonImportsCheck = [
-    "wheel_inspect"
-  ];
+  pythonImportsCheck = [ "wheel_inspect" ];
 
   pytestFlagsArray = [
     "-W"