686ce24904
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
67 lines
1.7 KiB
Nix
67 lines
1.7 KiB
Nix
{ lib, buildPythonPackage, fetchFromGitHub, fetchurl, pytestCheckHook, p7zip,
|
|
cabextract, zip, lzip, zpaq, gnutar, gnugrep, diffutils, file,
|
|
gzip, bzip2, xz}:
|
|
|
|
# unrar is unfree, as well as 7z with unrar support, not including it (patool doesn't support unar)
|
|
# it will still use unrar if present in the path
|
|
|
|
let
|
|
# FIXME: backport a patch in `file` that seemingly only affects this package
|
|
# Revert when fix to main package makes it through staging.
|
|
file' = file.overrideAttrs(old: {
|
|
patches = (old.patches or []) ++ [
|
|
(fetchurl {
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sys-apps/file/files/file-5.44-decompress-empty.patch?h=dfc57da515a2aaf085bea68267cc727f1bfaa691";
|
|
hash = "sha256-fUzRQAlLWczBmR5iA1Gk66mHjP40MJcMdgCtm2+u1SQ=";
|
|
})
|
|
];
|
|
});
|
|
|
|
compression-utilities = [
|
|
p7zip
|
|
gnutar
|
|
cabextract
|
|
zip
|
|
lzip
|
|
zpaq
|
|
gzip
|
|
gnugrep
|
|
diffutils
|
|
bzip2
|
|
file'
|
|
xz
|
|
];
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "patool";
|
|
version = "1.12";
|
|
|
|
#pypi doesn't have test data
|
|
src = fetchFromGitHub {
|
|
owner = "wummel";
|
|
repo = pname;
|
|
rev = "upstream/${version}";
|
|
sha256 = "0v4r77sm3yzh7y1whfwxmp01cchd82jbhvbg9zsyd2yb944imzjy";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace patoolib/util.py \
|
|
--replace "path = None" 'path = os.environ["PATH"] + ":${lib.makeBinPath compression-utilities}"'
|
|
'';
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ] ++ compression-utilities;
|
|
|
|
disabledTests = [
|
|
"test_unzip"
|
|
"test_unzip_file"
|
|
"test_zip"
|
|
"test_zip_file"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "portable archive file manager";
|
|
homepage = "https://wummel.github.io/patool/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ marius851000 ];
|
|
};
|
|
}
|