10 buildPythonPackage rec {
11 pname = "apkinspector";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
19 repo = "apkInspector";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-n6uVyN5XBEM/nuN7mvhNRwMUgUT5abOsh3CbhKK6ifY=";
24 build-system = [ poetry-core ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "apkInspector" ];
31 description = "Module designed to provide detailed insights into the zip structure of APK files";
32 homepage = "https://github.com/erev0s/apkInspector";
33 changelog = "https://github.com/erev0s/apkInspector/releases/tag/v${version}";
34 license = licenses.asl20;
35 maintainers = with maintainers; [ fab ];
36 mainProgram = "apkInspector";