about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansi
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-09-18 03:11:06 +0200
committerSandro Jäckel <sandro.jaeckel@sap.com>2022-09-19 16:05:44 +0200
commitcd9776aa25d617e49adb06cbc21d0f1ce66dac2b (patch)
treeba3a503c5ca4a5e19878b176e3ea44006755be12 /pkgs/development/python-modules/ansi
parente07eca17af37aac51777fa24bbed6eedfe32d171 (diff)
python3Packages.ansi: add setuptools to nativeBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/ansi')
-rw-r--r--pkgs/development/python-modules/ansi/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ansi/default.nix b/pkgs/development/python-modules/ansi/default.nix
index 5847e3ad0f9e8..e2e4e7c93fb9b 100644
--- a/pkgs/development/python-modules/ansi/default.nix
+++ b/pkgs/development/python-modules/ansi/default.nix
@@ -1,6 +1,7 @@
 { lib
 , buildPythonPackage
 , fetchFromGitHub
+, setuptools
 , pytestCheckHook
 }:
 
@@ -16,6 +17,10 @@ buildPythonPackage rec {
     hash = "sha256-2gu2Dba3LOjMhbCCZrBqzlOor5KqDYThhe8OP8J3O2M=";
   };
 
+  nativeBuildInputs = [
+    setuptools
+  ];
+
   checkInputs = [
     pytestCheckHook
   ];