dtrx: 8.5.1 -> 8.5.3

This commit is contained in:
Colin 2023-07-31 00:24:08 +00:00
parent 11cf5e1c74
commit eba9bbc251

View File

@ -1,5 +1,6 @@
{ lib
, fetchFromGitHub
, gitUpdater
, python3Packages
, gnutar
, unzip
@ -21,13 +22,13 @@
python3Packages.buildPythonApplication rec {
pname = "dtrx";
version = "8.5.1";
version = "8.5.3";
src = fetchFromGitHub {
owner = "dtrx-py";
repo = "dtrx";
rev = "refs/tags/${version}";
sha256 = "sha256-KOHafmvl17IABlcBuE7isHVCIYRbA68Dna6rgiiWlkQ=";
rev = version;
sha256 = "sha256-LB3F6jcqQPRsjFO4L2fPAPnacDAdtcaadgGbwXA9LAw=";
};
postInstall =
@ -43,6 +44,8 @@ python3Packages.buildPythonApplication rec {
nativeBuildInputs = [ python3Packages.invoke ];
passthru.updateScript = gitUpdater { };
meta = with lib; {
description = "Do The Right Extraction: A tool for taking the hassle out of extracting archives";
homepage = "https://github.com/dtrx-py/dtrx";