1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-05 12:02:47 +00:00
nixpkgs/pkgs/tools/misc/trash-cli/default.nix

33 lines
845 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2017-03-03 01:44:17 +00:00
python3Packages.buildPythonApplication rec {
2020-03-29 11:34:50 +01:00
pname = "trash-cli";
version = "0.21.5.11";
2014-12-23 07:35:26 +00:00
2017-03-03 01:44:17 +00:00
src = fetchFromGitHub {
owner = "andreafrancia";
repo = "trash-cli";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "0ifv717ywq2y0s6m9rkry1fnsr3mg9n2b2zcwaf9r5cxpw90bmym";
2014-12-23 07:35:26 +00:00
};
2020-11-23 21:03:13 +00:00
propagatedBuildInputs = [ python3Packages.psutil ];
2014-12-23 07:35:26 +00:00
checkInputs = with python3Packages; [
mock
pytestCheckHook
];
2021-04-29 20:58:42 +01:00
# Skip `test_user_specified` since its result depends on the mount path.
disabledTests = [ "test_user_specified" ];
2014-12-23 07:35:26 +00:00
meta = with lib; {
homepage = "https://github.com/andreafrancia/trash-cli";
2014-12-23 07:35:26 +00:00
description = "Command line tool for the desktop trash can";
maintainers = [ maintainers.rycee ];
2018-06-11 11:26:52 +01:00
platforms = platforms.unix;
2014-12-23 07:35:26 +00:00
license = licenses.gpl2;
2021-04-27 18:46:48 +01:00
mainProgram = "trash";
2014-12-23 07:35:26 +00:00
};
}