67d6407100
Diff: https://github.com/vstinner/hachoir/compare/refs/tags/3.2.0...3.3.0 Changelog: https://github.com/vstinner/hachoir/blob/3.3.0/doc/changelog.rst
42 lines
852 B
Nix
42 lines
852 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, urwid
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hachoir";
|
|
version = "3.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "vstinner";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-sTUJx8Xyhw4Z6juRtREw/okuVjSTSVWpSLKeZ7T8IR8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
urwid
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"hachoir"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to view and edit a binary stream";
|
|
homepage = "https://hachoir.readthedocs.io/";
|
|
changelog = "https://github.com/vstinner/hachoir/blob/${version}/doc/changelog.rst";
|
|
license = with licenses; [ gpl2Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|