504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, nose, libarchive, glibcLocales, isPy27
|
|
# unrar is non-free software
|
|
, useUnrar ? false, unrar
|
|
}:
|
|
|
|
assert useUnrar -> unrar != null;
|
|
assert !useUnrar -> libarchive != null;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rarfile";
|
|
version = "4.1";
|
|
format = "setuptools";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "markokr";
|
|
repo = "rarfile";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9PT4/KgkdFhTjZIia2xiSM5VnaZ4040Ww7bG9Nr3XDU=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook nose glibcLocales ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace rarfile.py \
|
|
'' + (if useUnrar then
|
|
''--replace 'UNRAR_TOOL = "unrar"' "UNRAR_TOOL = \"${unrar}/bin/unrar\""
|
|
''
|
|
else
|
|
''--replace 'ALT_TOOL = "bsdtar"' "ALT_TOOL = \"${libarchive}/bin/bsdtar\""
|
|
'')
|
|
+ "";
|
|
# the tests only work with the standard unrar package
|
|
doCheck = useUnrar;
|
|
LC_ALL = "en_US.UTF-8";
|
|
pythonImportsCheck = [ "rarfile" ];
|
|
|
|
meta = with lib; {
|
|
description = "RAR archive reader for Python";
|
|
homepage = "https://github.com/markokr/rarfile";
|
|
license = licenses.isc;
|
|
};
|
|
}
|