python312Packages.rarfile: 4.1 -> 4.2

This commit is contained in:
R. Ryantm 2024-04-04 02:35:16 +00:00
parent 200850af60
commit d309ecabfc
1 changed files with 3 additions and 3 deletions

View File

@ -8,15 +8,15 @@ assert !useUnrar -> libarchive != null;
buildPythonPackage rec {
pname = "rarfile";
version = "4.1";
version = "4.2";
format = "setuptools";
disabled = isPy27;
src = fetchFromGitHub {
owner = "markokr";
repo = "rarfile";
rev = "v${version}";
sha256 = "sha256-9PT4/KgkdFhTjZIia2xiSM5VnaZ4040Ww7bG9Nr3XDU=";
rev = "refs/tags/v${version}";
sha256 = "sha256-ZiwD2LG25fMd4Z+QWsh/x3ceG5QRBH4s/TZDwMnfpNI=";
};
nativeCheckInputs = [ pytestCheckHook nose glibcLocales ];