Merge pull request #301491 from fabaff/koodousfinder-fix

koodousfinder: relax keyring

authored by Fabian Affolter and committed by GitHub 3265871d c2f06330

+11 -10
+11 -10
pkgs/by-name/ko/koodousfinder/package.nix
··· 1 - { lib 2 - , python3 3 - , fetchFromGitHub 1 + { 2 + lib, 3 + python3, 4 + fetchFromGitHub, 4 5 }: 5 6 6 7 python3.pkgs.buildPythonApplication rec { ··· 17 18 hash = "sha256-skCbt2lDKgSyZdHY3WImbr6CF0icrDPTIXNV1736gKk="; 18 19 }; 19 20 20 - nativeBuildInputs = with python3.pkgs; [ 21 - poetry-core 22 - ]; 21 + pythonRelaxDeps = [ "keyring" ]; 22 + 23 + build-system = with python3.pkgs; [ poetry-core ]; 24 + 25 + nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ]; 23 26 24 - propagatedBuildInputs = with python3.pkgs; [ 27 + dependencies = with python3.pkgs; [ 25 28 keyring 26 29 requests 27 30 ]; ··· 29 32 # Project has no tests, re-check with next release 30 33 doCheck = false; 31 34 32 - pythonImportsCheck = [ 33 - "koodousfinder" 34 - ]; 35 + pythonImportsCheck = [ "koodousfinder" ]; 35 36 36 37 meta = with lib; { 37 38 description = "Tool to allows users to search for and analyze Android apps";