python3Packages.hachoir: init at 3.1.2
This commit is contained in:
parent
44fa00a5b8
commit
04991f2ec8
35
pkgs/development/python-modules/hachoir/default.nix
Normal file
35
pkgs/development/python-modules/hachoir/default.nix
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytestCheckHook
|
||||||
|
, urwid
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hachoir";
|
||||||
|
version = "3.1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "vstinner";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "06544qmmimvaznwcjs8wwfih1frdd7anwcw5z07cf69l8p146p0y";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
urwid
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "hachoir" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library to view and edit a binary stream";
|
||||||
|
homepage = "https://hachoir.readthedocs.io/";
|
||||||
|
license = with licenses; [ gpl2Only ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -23471,6 +23471,8 @@ in
|
|||||||
|
|
||||||
gxplugins-lv2 = callPackage ../applications/audio/gxplugins-lv2 { };
|
gxplugins-lv2 = callPackage ../applications/audio/gxplugins-lv2 { };
|
||||||
|
|
||||||
|
hachoir = with python3Packages; toPythonApplication hachoir;
|
||||||
|
|
||||||
hackrf = callPackage ../applications/radio/hackrf { };
|
hackrf = callPackage ../applications/radio/hackrf { };
|
||||||
|
|
||||||
hacksaw = callPackage ../tools/misc/hacksaw {};
|
hacksaw = callPackage ../tools/misc/hacksaw {};
|
||||||
|
@ -3069,6 +3069,8 @@ in {
|
|||||||
|
|
||||||
habanero = callPackage ../development/python-modules/habanero { };
|
habanero = callPackage ../development/python-modules/habanero { };
|
||||||
|
|
||||||
|
hachoir = callPackage ../development/python-modules/hachoir { };
|
||||||
|
|
||||||
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
||||||
|
|
||||||
halo = callPackage ../development/python-modules/halo { };
|
halo = callPackage ../development/python-modules/halo { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user