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
+4 -2
View File
@@ -28,8 +28,10 @@ python3Packages.buildPythonApplication rec {
}) })
]; ];
buildInputs = with python3Packages; [ nose mock ]; checkInputs = with python3Packages; [
nose
mock
];
checkPhase = "nosetests"; checkPhase = "nosetests";
meta = with stdenv.lib; { meta = with stdenv.lib; {