Merge pull request #167308 from fabaff/bump-hachoir

python3Packages.hachoir: 3.1.2 -> 3.1.3
This commit is contained in:
Fabian Affolter 2022-04-05 11:54:26 +02:00 committed by GitHub
commit 7c0d7d4c4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,17 +3,21 @@
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, urwid , urwid
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hachoir"; pname = "hachoir";
version = "3.1.2"; version = "3.1.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vstinner"; owner = "vstinner";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "06544qmmimvaznwcjs8wwfih1frdd7anwcw5z07cf69l8p146p0y"; hash = "sha256-HlxDwkU0GccO+IUzbtVpLbsAo+Mcacm4/WrXWCsmpBg=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -24,7 +28,9 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
pythonImportsCheck = [ "hachoir" ]; pythonImportsCheck = [
"hachoir"
];
meta = with lib; { meta = with lib; {
description = "Python library to view and edit a binary stream"; description = "Python library to view and edit a binary stream";