1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pefile, 6 pythonOlder, 7 setuptools, 8}: 9 10buildPythonPackage rec { 11 pname = "autoit-ripper"; 12 version = "1.1.2"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 hash = "sha256-+BHWDkeVewoRUgaHln5TyoajpCvJiowCiC2dFYyp1MA="; 20 }; 21 22 nativeBuildInputs = [ setuptools ]; 23 24 propagatedBuildInputs = [ pefile ]; 25 26 # Project has no tests 27 doCheck = false; 28 29 pythonImportsCheck = [ "autoit_ripper" ]; 30 31 meta = with lib; { 32 description = "Python module to extract AutoIt scripts embedded in PE binaries"; 33 mainProgram = "autoit-ripper"; 34 homepage = "https://github.com/nazywam/AutoIt-Ripper"; 35 changelog = "https://github.com/nazywam/AutoIt-Ripper/releases/tag/v${version}"; 36 license = with licenses; [ mit ]; 37 maintainers = with maintainers; [ fab ]; 38 }; 39}