trash-cli: 0.22.10.20 -> 0.23.2.13.2

authored by zendo and committed by Robert Helgesson 4361baa7 40865fcc

+7 -3
+7 -3
pkgs/tools/misc/trash-cli/default.nix
··· 2 2 3 3 python3Packages.buildPythonApplication rec { 4 4 pname = "trash-cli"; 5 - version = "0.22.10.20"; 5 + version = "0.23.2.13.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "andreafrancia"; 9 9 repo = "trash-cli"; 10 10 rev = version; 11 - hash = "sha256-NnFOe471GxcjpTwpsoxKaWiw4lW4tUPIM+WpzCsEdkI="; 11 + hash = "sha256-TJEi7HKIrfOdb+LLRt2DN5gWdFzUeo6isb59lFLK4bQ="; 12 12 }; 13 13 14 14 propagatedBuildInputs = with python3Packages; [ psutil six ]; ··· 17 17 mock 18 18 pytestCheckHook 19 19 ]; 20 + 21 + postPatch = '' 22 + sed -i '/typing/d' setup.cfg 23 + ''; 20 24 21 25 doInstallCheck = true; 22 26 installCheckPhase = '' ··· 42 46 43 47 meta = with lib; { 44 48 homepage = "https://github.com/andreafrancia/trash-cli"; 45 - description = "Command line tool for the desktop trash can"; 49 + description = "Command line interface to the freedesktop.org trashcan"; 46 50 maintainers = [ maintainers.rycee ]; 47 51 platforms = platforms.unix; 48 52 license = licenses.gpl2Plus;