10 buildPythonPackage rec {
13 format = "setuptools";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/${version}";
21 hash = "sha256-sTUJx8Xyhw4Z6juRtREw/okuVjSTSVWpSLKeZ7T8IR8=";
24 propagatedBuildInputs = [ urwid ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "hachoir" ];
31 description = "Python library to view and edit a binary stream";
32 homepage = "https://hachoir.readthedocs.io/";
33 changelog = "https://github.com/vstinner/hachoir/blob/${version}/doc/changelog.rst";
34 license = with licenses; [ gpl2Only ];
35 maintainers = with maintainers; [ fab ];