about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/preprocess-cancellation
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/preprocess-cancellation')
-rw-r--r--nixpkgs/pkgs/development/python-modules/preprocess-cancellation/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/preprocess-cancellation/default.nix b/nixpkgs/pkgs/development/python-modules/preprocess-cancellation/default.nix
index 44a54810e443..dc571f076fe3 100644
--- a/nixpkgs/pkgs/development/python-modules/preprocess-cancellation/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/preprocess-cancellation/default.nix
@@ -3,6 +3,7 @@
 , pythonOlder
 , fetchFromGitHub
 , poetry-core
+, setuptools
 , shapely
 , pytestCheckHook
 }:
@@ -40,13 +41,14 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [
     poetry-core
+    setuptools
   ];
 
   propagatedBuildInputs = [
     shapely
   ];
 
-  checkInputs = [
+  nativeCheckInputs = [
     pytestCheckHook
   ];