depot/third_party/nixpkgs/pkgs/development/python-modules/hachoir/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

42 lines
852 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, urwid
, pythonOlder
}:
buildPythonPackage rec {
pname = "hachoir";
version = "3.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "vstinner";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-BRrb6bnPSDVjZF1cOA9NlUYd2HrtqZEAVhHgkjmE0Xg=";
};
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 ];
};
}