ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / hachoir / default.nix
blobc7d4178e3bf9a09791a759fe8f5a6ddc1864f730
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 , urwid
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "hachoir";
11   version = "3.1.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "vstinner";
18     repo = pname;
19     rev = version;
20     hash = "sha256-HlxDwkU0GccO+IUzbtVpLbsAo+Mcacm4/WrXWCsmpBg=";
21   };
23   propagatedBuildInputs = [
24     urwid
25   ];
27   checkInputs = [
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     license = with licenses; [ gpl2Only ];
39     maintainers = with maintainers; [ fab ];
40   };