7 python3.pkgs.buildPythonApplication rec {
8 pname = "koodousfinder";
12 src = fetchFromGitHub {
13 owner = "teixeira0xfffff";
14 repo = "KoodousFinder";
15 # Not properly tagged, https://github.com/teixeira0xfffff/KoodousFinder/issues/7
16 #rev = "refs/tags/v${version}";
17 rev = "d9dab5572f44e5cd45c04e6fcda38956897855d1";
18 hash = "sha256-skCbt2lDKgSyZdHY3WImbr6CF0icrDPTIXNV1736gKk=";
21 pythonRelaxDeps = [ "keyring" ];
23 build-system = with python3.pkgs; [ poetry-core ];
25 nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
27 dependencies = with python3.pkgs; [
32 # Project has no tests, re-check with next release
35 pythonImportsCheck = [ "koodousfinder" ];
38 description = "Tool to allows users to search for and analyze Android apps";
39 homepage = "https://github.com/teixeira0xfffff/KoodousFinder";
40 license = with licenses; [ mit ];
41 maintainers = with maintainers; [ fab ];