Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / hachoir / default.nix
blob0de262ab7b43dec85a19b79bf26779e6c10c8d6a
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , urwid
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "hachoir";
11   version = "3.2.0";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "vstinner";
18     repo = pname;
19     rev = "refs/tags/${version}";
20     hash = "sha256-BRrb6bnPSDVjZF1cOA9NlUYd2HrtqZEAVhHgkjmE0Xg=";
21   };
23   propagatedBuildInputs = [
24     urwid
25   ];
27   nativeCheckInputs = [
28     pytestCheckHook
29   ];
31   pythonImportsCheck = [
32     "hachoir"
33   ];
35   meta = with lib; {
36     description = "Python library to view and edit a binary stream";
37     homepage = "https://hachoir.readthedocs.io/";
38     changelog = "https://github.com/vstinner/hachoir/blob/${version}/doc/changelog.rst";
39     license = with licenses; [ gpl2Only ];
40     maintainers = with maintainers; [ fab ];
41   };