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.
  • Loading branch information
timokau authored Mar 4, 2019
1 parent 1774c68 commit 83dcf66
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 83dcf66

Please sign in to comment.