8 buildPythonPackage rec {
11 format = "setuptools";
13 disabled = pythonOlder "3.8";
15 src = fetchFromGitHub {
19 hash = "sha256-SYOFGMvrzxDPMACaCvqwU28Mh9LEuvFBGvAph4X+geo=";
24 substituteInPlace setup.py \
25 --replace "'oletools>=0.54'," ""
28 # Module doesn't have tests
31 pythonImportsCheck = [ "pcodedmp" ];
34 description = "Python VBA p-code disassembler";
35 mainProgram = "pcodedmp";
36 homepage = "https://github.com/bontchev/pcodedmp";
37 license = with licenses; [ gpl3Only ];
38 maintainers = with maintainers; [ fab ];