trash-cli: fix build (#56818)

More fallout from enabling strictDeps in #55757. `buildInputs` are not
accessible from the check phase.
This commit is contained in:
Timo Kaufmann 2019-03-04 14:52:33 +01:00 committed by GitHub
parent 1774c68090
commit 83dcf66186
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,8 +28,10 @@ python3Packages.buildPythonApplication rec {
})
];
buildInputs = with python3Packages; [ nose mock ];
checkInputs = with python3Packages; [
nose
mock
];
checkPhase = "nosetests";
meta = with stdenv.lib; {