52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib, fetchFromGitHub, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "trash-cli";
|
|
version = "0.21.10.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "andreafrancia";
|
|
repo = "trash-cli";
|
|
rev = version;
|
|
sha256 = "01is32lk6prwhajvlmgn3xs4fcpmiqivizcqkj9k80jx6mqjifzs";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python3Packages.psutil ];
|
|
|
|
checkInputs = with python3Packages; [
|
|
mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
|
|
# Create a home directory with a test file.
|
|
HOME="$(mktemp -d)"
|
|
touch "$HOME/deleteme"
|
|
|
|
# Verify that trash list is initially empty.
|
|
[[ $($out/bin/trash-list) == "" ]]
|
|
|
|
# Trash a test file and verify that it shows up in the list.
|
|
$out/bin/trash "$HOME/deleteme"
|
|
[[ $($out/bin/trash-list) == *" $HOME/deleteme" ]]
|
|
|
|
# Empty the trash and verify that it is empty.
|
|
$out/bin/trash-empty
|
|
[[ $($out/bin/trash-list) == "" ]]
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/andreafrancia/trash-cli";
|
|
description = "Command line tool for the desktop trash can";
|
|
maintainers = [ maintainers.rycee ];
|
|
platforms = platforms.unix;
|
|
license = licenses.gpl2;
|
|
mainProgram = "trash";
|
|
};
|
|
}
|