5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
colorclass,
|
|
easygui,
|
|
fetchFromGitHub,
|
|
msoffcrypto-tool,
|
|
olefile,
|
|
pcodedmp,
|
|
pyparsing,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "oletools";
|
|
version = "0.60.2";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "decalage2";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-ons1VeWStxUZw2CPpnX9p5I3Q7cMhi34JU8TeuUDt+Y=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
colorclass
|
|
easygui
|
|
msoffcrypto-tool
|
|
olefile
|
|
pcodedmp
|
|
pyparsing
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "pyparsing>=2.1.0,<3" "pyparsing>=2.1.0"
|
|
'';
|
|
|
|
disabledTests = [
|
|
# Test fails with AssertionError: Tuples differ: ('MS Word 2007+...
|
|
"test_all"
|
|
"test_xlm"
|
|
];
|
|
|
|
pythonImportsCheck = [ "oletools" ];
|
|
|
|
meta = with lib; {
|
|
description = "Module to analyze MS OLE2 files and MS Office documents";
|
|
homepage = "https://github.com/decalage2/oletools";
|
|
license = with licenses; [
|
|
bsd2 # and
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|