Merge pull request #301491 from fabaff/koodousfinder-fix
koodousfinder: relax keyring
This commit is contained in:
commit
3265871df6
1 changed files with 11 additions and 10 deletions
|
@ -1,6 +1,7 @@
|
||||||
{ lib
|
{
|
||||||
, python3
|
lib,
|
||||||
, fetchFromGitHub
|
python3,
|
||||||
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
|
@ -17,11 +18,13 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
hash = "sha256-skCbt2lDKgSyZdHY3WImbr6CF0icrDPTIXNV1736gKk=";
|
hash = "sha256-skCbt2lDKgSyZdHY3WImbr6CF0icrDPTIXNV1736gKk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
pythonRelaxDeps = [ "keyring" ];
|
||||||
poetry-core
|
|
||||||
];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [ poetry-core ];
|
||||||
|
|
||||||
|
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
||||||
|
|
||||||
|
dependencies = with python3.pkgs; [
|
||||||
keyring
|
keyring
|
||||||
requests
|
requests
|
||||||
];
|
];
|
||||||
|
@ -29,9 +32,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
# Project has no tests, re-check with next release
|
# Project has no tests, re-check with next release
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [ "koodousfinder" ];
|
||||||
"koodousfinder"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Tool to allows users to search for and analyze Android apps";
|
description = "Tool to allows users to search for and analyze Android apps";
|
||||||
|
|
Loading…
Reference in a new issue