mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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:
parent
1774c68090
commit
83dcf66186
1 changed files with 4 additions and 2 deletions
|
@ -28,8 +28,10 @@ python3Packages.buildPythonApplication rec {
|
|||
})
|
||||
];
|
||||
|
||||
buildInputs = with python3Packages; [ nose mock ];
|
||||
|
||||
checkInputs = with python3Packages; [
|
||||
nose
|
||||
mock
|
||||
];
|
||||
checkPhase = "nosetests";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue