about summary refs log tree commit diff
path: root/pkgs/tools/misc/trash-cli
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2019-03-04 14:52:33 +0100
committerGitHub <noreply@github.com>2019-03-04 14:52:33 +0100
commit83dcf661860cc7731d4a78c3633c17d56ed71999 (patch)
tree6842d83b1814516809f188bf7de25a1f026cc9e4 /pkgs/tools/misc/trash-cli
parent1774c6809033b3d0b6400154b7eb4f8c0287abc2 (diff)
trash-cli: fix build (#56818)
More fallout from enabling strictDeps in #55757. `buildInputs` are not
accessible from the check phase.
Diffstat (limited to 'pkgs/tools/misc/trash-cli')
-rw-r--r--pkgs/tools/misc/trash-cli/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/misc/trash-cli/default.nix b/pkgs/tools/misc/trash-cli/default.nix
index 7ae871afc783a..1f5a6c4ea4c25 100644
--- a/pkgs/tools/misc/trash-cli/default.nix
+++ b/pkgs/tools/misc/trash-cli/default.nix
@@ -28,8 +28,10 @@ python3Packages.buildPythonApplication rec {
     })
   ];
 
-  buildInputs = with python3Packages; [ nose mock ];
-
+  checkInputs = with python3Packages; [
+    nose
+    mock
+  ];
   checkPhase = "nosetests";
 
   meta = with stdenv.lib; {