about summary refs log tree commit diff
path: root/pkgs/development/python-modules/cli-ui/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/cli-ui/default.nix')
-rw-r--r--pkgs/development/python-modules/cli-ui/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/cli-ui/default.nix b/pkgs/development/python-modules/cli-ui/default.nix
index 88f152a6fc599..3b93c3eb7be8b 100644
--- a/pkgs/development/python-modules/cli-ui/default.nix
+++ b/pkgs/development/python-modules/cli-ui/default.nix
@@ -1,16 +1,15 @@
 {
   lib,
-  python3Packages,
   fetchPypi,
   pytestCheckHook,
-  pythonRelaxDepsHook,
   pythonOlder,
   poetry-core,
   colorama,
   tabulate,
   unidecode,
+  buildPythonPackage,
 }:
-python3Packages.buildPythonPackage rec {
+buildPythonPackage rec {
   pname = "cli-ui";
   version = "0.17.2";
   pyproject = true;
@@ -24,7 +23,6 @@ python3Packages.buildPythonPackage rec {
 
   pythonRelaxDeps = [ "tabulate" ];
 
-  nativeBuildInputs = [ pythonRelaxDepsHook ];
 
   build-system = [ poetry-core ];