Skip to content

Commit

Permalink
trash-cli: fix build (#56818)
Browse files Browse the repository at this point in the history
More fallout from enabling strictDeps in #55757. `buildInputs` are not
accessible from the check phase.

(cherry picked from commit 83dcf66)
  • Loading branch information
timokau authored and samueldr committed Mar 10, 2019
1 parent a6caed5 commit 42db132
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/tools/misc/trash-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ python3Packages.buildPythonApplication rec {
})
];

buildInputs = with python3Packages; [ nose mock ];

checkInputs = with python3Packages; [
nose
mock
];
checkPhase = "nosetests";

meta = with stdenv.lib; {
Expand Down

0 comments on commit 42db132

Please sign in to comment.